Skip to content

Commit f94baab

Browse files
authored
internal/ethapi: fix state override test (#30228)
Looks like #30094 became a bit stale after #30185 was merged and now we have a stale ref to a state override object causing CI to fail on master.
1 parent ac0f220 commit f94baab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/ethapi/api_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ func TestCall(t *testing.T) {
979979
},
980980
overrides: StateOverride{
981981
dad: OverrideAccount{
982-
State: &map[common.Hash]common.Hash{},
982+
State: map[common.Hash]common.Hash{},
983983
},
984984
},
985985
want: "0x0000000000000000000000000000000000000000000000000000000000000000",

0 commit comments

Comments
 (0)