aboutsummaryrefslogtreecommitdiffstats
path: root/common/db.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-05-28 01:00:08 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-05-28 01:00:08 +0800
commit5479be9f6412ccd60e86d6c9be972894cf99abdf (patch)
treeae6c7f6d5bfaf4380bf54cac5fadd291b08ee1a7 /common/db.go
parent903b95fffabf0f8c94594b69d95747772e6abed8 (diff)
parent020006a8ede0463346ad3d4ae318d299eee63fb1 (diff)
downloaddexon-5479be9f6412ccd60e86d6c9be972894cf99abdf.tar.gz
dexon-5479be9f6412ccd60e86d6c9be972894cf99abdf.tar.zst
dexon-5479be9f6412ccd60e86d6c9be972894cf99abdf.zip
Merge pull request #1129 from obscuren/database_cache_removal
ethdb, common: cache removal
Diffstat (limited to 'common/db.go')
-rw-r--r--common/db.go1
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
}