common, ethdb: removed caching and LastTD

This commit is contained in:
obscuren
2015-05-27 18:03:16 +02:00
parent 7595716816
commit 020006a8ed
2 changed files with 6 additions and 59 deletions

View File

@ -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
}