(key, value []byte)
| 63 | type Trie interface { |
| 64 | TryGet(key []byte) ([]byte, error) |
| 65 | TryUpdate(key, value []byte) error |
| 66 | TryDelete(key []byte) error |
| 67 | Commit(onleaf trie.LeafCallback) (common.Hash, error) |
| 68 | Hash() common.Hash |
no outgoing calls
no test coverage detected