aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-05-28 00:03:16 +0800
committerobscuren <geffobscura@gmail.com>2015-05-28 00:03:16 +0800
commit020006a8ede0463346ad3d4ae318d299eee63fb1 (patch)
tree709c4fc937eead9ed902578426350231b34fb2a9 /common
parent759571681604e95b876a03e274c9588529ab204e (diff)
downloaddexon-020006a8ede0463346ad3d4ae318d299eee63fb1.tar
dexon-020006a8ede0463346ad3d4ae318d299eee63fb1.tar.gz
dexon-020006a8ede0463346ad3d4ae318d299eee63fb1.tar.bz2
dexon-020006a8ede0463346ad3d4ae318d299eee63fb1.tar.lz
dexon-020006a8ede0463346ad3d4ae318d299eee63fb1.tar.xz
dexon-020006a8ede0463346ad3d4ae318d299eee63fb1.tar.zst
dexon-020006a8ede0463346ad3d4ae318d299eee63fb1.zip
common, ethdb: removed caching and LastTD
Diffstat (limited to 'common')
-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
}