mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 05:06:43 +00:00
core/state: correct expected value in TestMessageCallGas failure message
This commit is contained in:
parent
46b7e78cc0
commit
4af7d9e7f9
1 changed files with 1 additions and 1 deletions
|
|
@ -131,7 +131,7 @@ func TestMessageCallGas(t *testing.T) {
|
|||
}
|
||||
gas = ae.CodeHashGas(testAddr, false, math.MaxUint64, false)
|
||||
if gas != params.WitnessChunkReadCost {
|
||||
t.Fatalf("incorrect gas computed, got %d, want %d", gas, 0)
|
||||
t.Fatalf("incorrect gas computed, got %d, want %d", gas, params.WitnessChunkReadCost)
|
||||
}
|
||||
|
||||
// Check warm read cost
|
||||
|
|
|
|||
Loading…
Reference in a new issue