Skip to content

Commit

Permalink
internal/ethapi: fix state override test (ethereum#30228)
Browse files Browse the repository at this point in the history
Looks like ethereum#30094 became a bit stale after ethereum#30185 was merged and now we
have a stale ref to a state override object causing CI to fail on
master.
  • Loading branch information
lightclient authored and leeren committed Aug 16, 2024
1 parent d71a68b commit c3c4b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ethapi/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ func TestCall(t *testing.T) {
},
overrides: StateOverride{
dad: OverrideAccount{
State: &map[common.Hash]common.Hash{},
State: map[common.Hash]common.Hash{},
},
},
want: "0x0000000000000000000000000000000000000000000000000000000000000000",
Expand Down

0 comments on commit c3c4b51

Please sign in to comment.