core, tests: Double SUICIDE fix

This commit is contained in:
Jeffrey Wilcke
2015-08-20 18:22:50 +02:00
parent 54088b0b8b
commit 36f7fe61c3
5 changed files with 785 additions and 165 deletions

View File

@ -82,8 +82,9 @@ type StateObject struct {
// Mark for deletion
// When an object is marked for deletion it will be delete from the trie
// during the "update" phase of the state transition
remove bool
dirty bool
remove bool
deleted bool
dirty bool
}
func (self *StateObject) Reset() {