Skip to content

Commit

Permalink
merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ak88 committed Aug 27, 2024
1 parent 2f70584 commit 0da8f10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Nethermind/Nethermind.Evm/VirtualMachine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ private bool ChargeAccountAccessGas(ref long gasAvailable, EvmState vmState, Add

bool ChargeAccountGas(ref long gasAvailable, EvmState vmState, Address address, IReleaseSpec spec)
{
bool result = false;
bool result = true;
if (_txTracer.IsTracingAccess) // when tracing access we want cost as if it was warmed up from access list
{
vmState.WarmUp(address);
Expand Down

0 comments on commit 0da8f10

Please sign in to comment.