(addr common.Address, key, value common.Hash)
| 310 | } |
| 311 | |
| 312 | func (self *StateDB) SetState(addr common.Address, key, value common.Hash) { |
| 313 | stateObject := self.GetOrNewStateObject(addr) |
| 314 | if stateObject != nil { |
| 315 | stateObject.SetState(self.db, key, value) |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | // Suicide marks the given account as suicided. |
| 320 | // This clears the account balance. |
nothing calls this directly
no test coverage detected