aboutsummaryrefslogtreecommitdiffstats
path: root/ethdb/memory_database.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-04-24 02:46:27 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-04-24 02:46:27 +0800
commitf5e0388f62085c7eb100769765f8649ec364c1bd (patch)
tree5a40c627855698b6d5a912c84ab8008fdc24da44 /ethdb/memory_database.go
parentabe08d7be34d5d3278f8473bdbd5a94756f8cfd3 (diff)
parentc12180d00566dba977b2d34f61ed52e2a4d279ed (diff)
downloaddexon-f5e0388f62085c7eb100769765f8649ec364c1bd.tar
dexon-f5e0388f62085c7eb100769765f8649ec364c1bd.tar.gz
dexon-f5e0388f62085c7eb100769765f8649ec364c1bd.tar.bz2
dexon-f5e0388f62085c7eb100769765f8649ec364c1bd.tar.lz
dexon-f5e0388f62085c7eb100769765f8649ec364c1bd.tar.xz
dexon-f5e0388f62085c7eb100769765f8649ec364c1bd.tar.zst
dexon-f5e0388f62085c7eb100769765f8649ec364c1bd.zip
Merge pull request #778 from bas-vk/issue764
Moved database update loop to eth/backend
Diffstat (limited to 'ethdb/memory_database.go')
-rw-r--r--ethdb/memory_database.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/ethdb/memory_database.go b/ethdb/memory_database.go
index d4988d0d8..f5d5faee7 100644
--- a/ethdb/memory_database.go
+++ b/ethdb/memory_database.go
@@ -65,3 +65,7 @@ func (db *MemDatabase) LastKnownTD() []byte {
return data
}
+
+func (db *MemDatabase) Flush() error {
+ return nil
+}