diff options
Diffstat (limited to 'core/state')
-rw-r--r-- | core/state/statedb.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/state/statedb.go b/core/state/statedb.go index 0673de543..a299cdb64 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -53,6 +53,10 @@ func (n *proofList) Put(key []byte, value []byte) error { return nil } +func (n *proofList) Delete(key []byte) error { + panic("not supported") +} + // StateDBs within the ethereum protocol are used to store anything // within the merkle trie. StateDBs take care of caching and storing // nested states. It's the general query interface to retrieve: |