()
| 137 | } |
| 138 | |
| 139 | func (c *stateObject) touch() { |
| 140 | c.db.journal.append(touchChange{ |
| 141 | account: &c.address, |
| 142 | }) |
| 143 | if c.address == ripemd { |
| 144 | // Explicitly put it in the dirty-cache, which is otherwise generated from |
| 145 | // flattened journals. |
| 146 | c.db.journal.dirty(c.address) |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | func (c *stateObject) getTrie(db Database) Trie { |
| 151 | if c.trie == nil { |
no test coverage detected