diff options
Diffstat (limited to 'common/db.go')
-rw-r--r-- | common/db.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common/db.go b/common/db.go index ae13c7557..c12a2cfb0 100644 --- a/common/db.go +++ b/common/db.go @@ -5,7 +5,6 @@ type Database interface { Put(key []byte, value []byte) Get(key []byte) ([]byte, error) Delete(key []byte) error - LastKnownTD() []byte Close() Flush() error } |