Added delete to database interfaces

This commit is contained in:
obscuren
2014-02-24 12:12:01 +01:00
parent 5971c82094
commit 55c1c220d0
3 changed files with 11 additions and 0 deletions

View File

@ -4,6 +4,7 @@ package ethutil
type Database interface {
Put(key []byte, value []byte)
Get(key []byte) ([]byte, error)
Delete(key []byte) error
LastKnownTD() []byte
Close()
Print()