(s *StateDB)
| 188 | } |
| 189 | |
| 190 | func (ch codeChange) revert(s *StateDB) { |
| 191 | s.getStateObject(*ch.account).setCode(common.BytesToHash(ch.prevhash), ch.prevcode) |
| 192 | } |
| 193 | |
| 194 | func (ch codeChange) dirtied() *common.Address { |
| 195 | return ch.account |
nothing calls this directly
no test coverage detected