UpdateContractCode abstracts code write to the trie. It is expected to be moved to the stateWriter interface when the latter is ready.
(address common.Address, codeHash common.Hash, code []byte)
| 100 | // UpdateContractCode abstracts code write to the trie. It is expected |
| 101 | // to be moved to the stateWriter interface when the latter is ready. |
| 102 | UpdateContractCode(address common.Address, codeHash common.Hash, code []byte) error |
| 103 | |
| 104 | // DeleteStorage removes any existing value for key from the trie. If a node |
| 105 | // was not found in the database, a trie.MissingNodeError is returned. |