Skip to content

Commit

Permalink
correct levm call
Browse files Browse the repository at this point in the history
  • Loading branch information
tomip01 committed Feb 6, 2025
1 parent 601ecec commit de59f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/vm/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ cfg_if::cfg_if! {


// Account updates are initialized like this because of the beacon_root_contract_call, it is going to be empty if it wasn't called.
let mut account_updates = get_state_transitions(state);
let mut account_updates = get_state_transitions_levm(state, block.header.parent_hash, &block_cache);

let mut receipts = Vec::new();
let mut cumulative_gas_used = 0;
Expand Down

0 comments on commit de59f0d

Please sign in to comment.