Skip to content

Commit

Permalink
chore: fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin committed Jul 14, 2024
1 parent d869a65 commit c28ab64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rollup/src/execution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ fn execute_transactions(
transaction_gas_limit: transaction.gas_limit(),
block_available_gas,
}
.into())
.into());
}
// Execute transaction.
// Fill revm structure.
Expand All @@ -219,7 +219,7 @@ fn execute_transactions(
EVMError::Transaction(err) => {
// if the transaction is invalid, we can skip it
debug!(%err, ?transaction, "Skipping invalid transaction");
continue
continue;
}
err => {
// this is an error that we should treat as fatal for this attempt
Expand Down

0 comments on commit c28ab64

Please sign in to comment.