Skip to content

Commit

Permalink
chore(builder): reorder revm State import
Browse files Browse the repository at this point in the history
  • Loading branch information
Rjected committed Sep 28, 2024
1 parent 65f7e88 commit 1478fe8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/ethereum/payload/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ use reth_transaction_pool::{
};
use reth_trie::HashedPostState;
use revm::{
db::states::bundle_state::BundleRetention,
db::{states::bundle_state::BundleRetention, State},
primitives::{EVMError, EnvWithHandlerCfg, InvalidTransaction, ResultAndState},
DatabaseCommit, State,
DatabaseCommit,
};
use revm_primitives::calc_excess_blob_gas;
use std::sync::Arc;
Expand Down
4 changes: 2 additions & 2 deletions crates/optimism/payload/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ use reth_transaction_pool::{
};
use reth_trie::HashedPostState;
use revm::{
db::states::bundle_state::BundleRetention,
db::{states::bundle_state::BundleRetention, State},
primitives::{EVMError, EnvWithHandlerCfg, InvalidTransaction, ResultAndState},
DatabaseCommit, State,
DatabaseCommit,
};
use revm_primitives::calc_excess_blob_gas;
use tracing::{debug, trace, warn};
Expand Down

0 comments on commit 1478fe8

Please sign in to comment.