Skip to content

Commit

Permalink
feat(mempool): implement commit_block method
Browse files Browse the repository at this point in the history
  • Loading branch information
MohammadNassar1 committed May 30, 2024
1 parent cefa8a4 commit 1c7a223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/mempool/src/mempool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ impl Mempool {
self.staging.remove(tx_hash);
}

for (contract_address, account_state) in _state_changes {
for (contract_address, account_state) in _state_changes {
self.state.insert(contract_address, account_state);
}

Expand Down

0 comments on commit 1c7a223

Please sign in to comment.