ethdb: remove Flush

This commit is contained in:
Felix Lange
2015-09-14 23:36:30 +02:00
parent d581dfee5f
commit b252589960
4 changed files with 10 additions and 51 deletions
-1
View File
@@ -21,7 +21,6 @@ type Database interface {
Get(key []byte) ([]byte, error)
Delete(key []byte) error
Close()
Flush() error
NewBatch() Batch
}