ethdb: remove Flush

This commit is contained in:
Felix Lange
2015-09-14 09:45:40 +02:00
parent d581dfee5f
commit b252589960
4 changed files with 10 additions and 51 deletions

View File

@ -21,7 +21,6 @@ type Database interface {
Get(key []byte) ([]byte, error)
Delete(key []byte) error
Close()
Flush() error
NewBatch() Batch
}