Skip to content

Commit

Permalink
fix REVERT in state processor test execution (ethereum#158)
Browse files Browse the repository at this point in the history
* fix code offset in tree update

* fix REVERT in test execution
  • Loading branch information
gballet authored Feb 6, 2023
1 parent 08ec85d commit 4dc00e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/state_processor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ func TestProcessVerkle(t *testing.T) {
tx, _ = types.SignTx(types.NewContractCreation(6, big.NewInt(16), 3000000, big.NewInt(875000000), code), signer, testKey)
gen.AddTx(tx)

tx, _ = types.SignTx(types.NewContractCreation(7, big.NewInt(32), 3000000, big.NewInt(875000000), codeWithExtCodeCopy), signer, testKey)
tx, _ = types.SignTx(types.NewContractCreation(7, big.NewInt(0), 3000000, big.NewInt(875000000), codeWithExtCodeCopy), signer, testKey)
gen.AddTx(tx)
}
})
Expand Down

0 comments on commit 4dc00e6

Please sign in to comment.