Skip to content

Commit

Permalink
Chore
Browse files Browse the repository at this point in the history
  • Loading branch information
ilitteri committed Nov 21, 2024
1 parent 798ca19 commit 0df3e41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/storage/store/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub enum EngineType {
Libmdbx,
}

#[derive(Default, Debug)]
#[derive(Default, Debug, Clone)]
pub struct AccountUpdate {
pub address: Address,
pub removed: bool,
Expand Down
4 changes: 2 additions & 2 deletions crates/vm/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use revm::{
inspector_handle_register,
inspectors::TracerEip3155,
precompile::{PrecompileSpecId, Precompiles},
primitives::{BlobExcessGasAndPrice, BlockEnv, TxEnv, B256, U256 as RevmU256},
primitives::{BlobExcessGasAndPrice, BlockEnv, TxEnv, B256},
Database, DatabaseCommit, Evm,
};
use revm_inspectors::access_list::AccessListInspector;
Expand All @@ -35,7 +35,7 @@ use revm_primitives::{
// Export needed types
pub use errors::EvmError;
pub use execution_result::*;
pub use revm::primitives::{Address as RevmAddress, SpecId};
pub use revm::primitives::{Address as RevmAddress, SpecId, U256 as RevmU256};

type AccessList = Vec<(Address, Vec<H256>)>;

Expand Down

0 comments on commit 0df3e41

Please sign in to comment.