From 59e0f1ee00518d7528650ccad388a7afe2e129d4 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Thu, 19 May 2022 10:00:45 +0200 Subject: [PATCH] tests: update reference tests (#24899) * tests: update reference tests * tests: fix flaw in state test execution * f --- tests/state_test_util.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/state_test_util.go b/tests/state_test_util.go index 6a173e040..f6d8e1500 100644 --- a/tests/state_test_util.go +++ b/tests/state_test_util.go @@ -233,15 +233,14 @@ func (t *StateTest) RunNoVerify(subtest StateSubtest, vmconfig vm.Config, snapsh if _, err := core.ApplyMessage(evm, msg, gaspool); err != nil { statedb.RevertToSnapshot(snapshot) } - - // Commit block - statedb.Commit(config.IsEIP158(block.Number())) // Add 0-value mining reward. This only makes a difference in the cases // where // - the coinbase suicided, or // - there are only 'bad' transactions, which aren't executed. In those cases, // the coinbase gets no txfee, so isn't created, and thus needs to be touched statedb.AddBalance(block.Coinbase(), new(big.Int)) + // Commit block + statedb.Commit(config.IsEIP158(block.Number())) // And _now_ get the state root root := statedb.IntermediateRoot(config.IsEIP158(block.Number())) return snaps, statedb, root, nil