diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/db.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/common/db.go b/common/db.go index 6505e61c6..408b1e755 100644 --- a/common/db.go +++ b/common/db.go @@ -4,9 +4,7 @@ package common type Database interface { Put(key []byte, value []byte) Get(key []byte) ([]byte, error) - //GetKeys() []*Key Delete(key []byte) error LastKnownTD() []byte Close() - Print() } |