diff options
author | Determinant <[email protected]> | 2020-09-20 14:37:49 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-09-20 14:37:49 -0400 |
commit | 3c8282bebe65b493ffb55fe9bce81ffd34fe7975 (patch) | |
tree | 158b219dc1e4093955028638d495d9a9ebfe1c2a /core/state/journal.go | |
parent | 99431861078d78289c6513005e8c173be289843a (diff) |
minor change to properly journal the IsMultiCoin flag
Diffstat (limited to 'core/state/journal.go')
-rw-r--r-- | core/state/journal.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/state/journal.go b/core/state/journal.go index be27493..0cc556b 100644 --- a/core/state/journal.go +++ b/core/state/journal.go @@ -185,7 +185,7 @@ func (ch balanceChange) dirtied() *common.Address { } func (ch multiCoinEnable) revert(s *StateDB) { - //s.getStateObject(*ch.account).data.IsMultiCoin = false + s.getStateObject(*ch.account).data.IsMultiCoin = false } func (ch multiCoinEnable) dirtied() *common.Address { |