Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/context/interface/src/block/blob.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ impl BlobExcessGasAndPrice {
}

/// Calculates the `excess_blob_gas` from the parent header's `blob_gas_used` and `excess_blob_gas`.
/// uses [`calc_excess_blob_gas`] internally.
/// Uses [`calc_excess_blob_gas_osaka`] internally.
#[inline]
pub fn calc_excess_blob_gas(
parent_excess_blob_gas: u64,
Expand Down
1 change: 0 additions & 1 deletion crates/inspector/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ mod tests {
fn test_step_halt() {
let bytecode = [opcode::INVALID];
let r = run(&bytecode, HaltInspector);
dbg!(&r);
assert!(r.is_success());
}

Expand Down
2 changes: 1 addition & 1 deletion crates/precompile/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ impl Precompiles {

/// Is the precompiles list empty.
pub fn is_empty(&self) -> bool {
self.inner.len() == 0
self.inner.is_empty()
}

/// Returns the number of precompiles.
Expand Down
Loading