diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-08 04:19:01 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-08 04:19:01 +0800 |
commit | 7f32a08b6095bb5f1ff58168be70326ee0c29266 (patch) | |
tree | 8fec3ed0cb6ee6a99942f8ad699c85f8d204339b /common | |
parent | 758205b187e079080193c2fed2a21caff2377329 (diff) | |
download | go-tangerine-7f32a08b6095bb5f1ff58168be70326ee0c29266.tar.gz 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.go | 2 |
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() } |