Skip to content

Commit

Permalink
fix clippy, add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
xqft committed Oct 30, 2024
1 parent bbf1c18 commit 19f6380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/vm/execution_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl ExecutionDB {
let mut accounts = HashMap::new();
let code = HashMap::new(); // TODO: `code` remains empty for now
let mut storage = HashMap::new();
let mut block_hashes = HashMap::new();
let block_hashes = HashMap::new(); // TODO: `block_hashes` remains empty for now

for account_update in account_updates {
let address = RevmAddress::from_slice(account_update.address.as_bytes());
Expand Down

0 comments on commit 19f6380

Please sign in to comment.