(key, value common.Hash)
| 193 | } |
| 194 | |
| 195 | func (self *stateObject) setState(key, value common.Hash) { |
| 196 | self.cachedStorage[key] = value |
| 197 | self.dirtyStorage[key] = value |
| 198 | } |
| 199 | |
| 200 | // updateTrie writes cached storage modifications into the object's storage trie. |
| 201 | func (self *stateObject) updateTrie(db Database) Trie { |