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

@ -91,10 +91,6 @@ func (db *MemDatabase) LastKnownTD() []byte {
return data
}
func (db *MemDatabase) Flush() error {
return nil
}
func (db *MemDatabase) NewBatch() Batch {
return &memBatch{db: db}
}