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 2698a01 commit cb9f133Copy full SHA for cb9f133
core/state/statedb.go
@@ -1096,7 +1096,7 @@ func (s *StateDB) handleDestruction(nodes *trienode.MergedNodeSet) (map[common.A
1096
// considerable time and storage deletion isn't supported in hash mode, thus
1097
// preemptively avoiding unnecessary expenses.
1098
incomplete := make(map[common.Address]struct{})
1099
- if s.db.TrieDB().Scheme() == rawdb.HashScheme {
+ if s.db.TrieDB().Scheme() != rawdb.PathScheme {
1100
return incomplete, nil
1101
}
1102
for addr, prev := range s.stateObjectsDestruct {
0 commit comments