We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32a724a commit 325b36fCopy full SHA for 325b36f
eth/tracers/native/prestate.go
@@ -214,10 +214,8 @@ func (t *prestateTracer) processDiffState() {
214
continue
215
}
216
modified := false
217
- postAccount := &account{
218
- Storage: make(map[common.Hash]common.Hash),
219
- ArbitrumStorage: make(map[common.Hash]common.Hash),
220
- }
+ postAccount := &account{Storage: make(map[common.Hash]common.Hash)}
+ postAccount.ArbitrumStorage = make(map[common.Hash]common.Hash)
221
newBalance := t.env.StateDB.GetBalance(addr).ToBig()
222
newNonce := t.env.StateDB.GetNonce(addr)
223
newCode := t.env.StateDB.GetCode(addr)
0 commit comments