From 2037c53e7a0104b33b996ef4c705a1928df207a4 Mon Sep 17 00:00:00 2001 From: Galoretka Date: Tue, 30 Sep 2025 05:11:09 +0300 Subject: [PATCH] core/state: correct expected value in TestMessageCallGas (#32780) --- core/state/access_events_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/access_events_test.go b/core/state/access_events_test.go index 5e1fee767c..e80859a0b4 100644 --- a/core/state/access_events_test.go +++ b/core/state/access_events_test.go @@ -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