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 b20aeb5 commit bf2597dCopy full SHA for bf2597d
core/state/journal.go
@@ -172,7 +172,7 @@ func (ch createObjectChange) revert(s *StateDB) {
172
}
173
174
func (ch createObjectChange) dirtied() *common.Address {
175
- return nil
+ return ch.account
176
177
178
func (ch createObjectChange) copy() journalEntry {
@@ -186,7 +186,7 @@ func (ch createContractChange) revert(s *StateDB) {
186
187
188
func (ch createContractChange) dirtied() *common.Address {
189
- return &ch.account
+ return nil
190
191
192
func (ch createContractChange) copy() journalEntry {
0 commit comments