aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-08 04:19:01 +0800
committerobscuren <geffobscura@gmail.com>2015-04-08 04:19:01 +0800
commit7f32a08b6095bb5f1ff58168be70326ee0c29266 (patch)
tree8fec3ed0cb6ee6a99942f8ad699c85f8d204339b /common
parent758205b187e079080193c2fed2a21caff2377329 (diff)
downloadgo-tangerine-7f32a08b6095bb5f1ff58168be70326ee0c29266.tar
go-tangerine-7f32a08b6095bb5f1ff58168be70326ee0c29266.tar.gz
go-tangerine-7f32a08b6095bb5f1ff58168be70326ee0c29266.tar.bz2
go-tangerine-7f32a08b6095bb5f1ff58168be70326ee0c29266.tar.lz
go-tangerine-7f32a08b6095bb5f1ff58168be70326ee0c29266.tar.xz
go-tangerine-7f32a08b6095bb5f1ff58168be70326ee0c29266.tar.zst
go-tangerine-7f32a08b6095bb5f1ff58168be70326ee0c29266.zip
Queued level db writes and batch writes. Closes #647
Diffstat (limited to 'common')
-rw-r--r--common/db.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/common/db.go b/common/db.go
index 6505e61c6..408b1e755 100644
--- a/common/db.go
+++ b/common/db.go
@@ -4,9 +4,7 @@ package common
type Database interface {
Put(key []byte, value []byte)
Get(key []byte) ([]byte, error)
- //GetKeys() []*Key
Delete(key []byte) error
LastKnownTD() []byte
Close()
- Print()
}