aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/db.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-15 03:34:30 +0800
committerobscuren <geffobscura@gmail.com>2014-05-15 03:34:30 +0800
commit6efdd21633c1d21f36080754a89ad82c0c244128 (patch)
tree873da7787044997e5590d35e32076ecb7a21dae4 /ethutil/db.go
parent283f4d8eb3e223f89fd613767e1c6c318ac2bb75 (diff)
parentad4ffdc9474aca48ab1d3d361797398f795a6d31 (diff)
downloadgo-tangerine-6efdd21633c1d21f36080754a89ad82c0c244128.tar.gz
go-tangerine-6efdd21633c1d21f36080754a89ad82c0c244128.tar.zst
go-tangerine-6efdd21633c1d21f36080754a89ad82c0c244128.zip
Merge branch 'release/poc5-rc6'
Diffstat (limited to 'ethutil/db.go')
-rw-r--r--ethutil/db.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethutil/db.go b/ethutil/db.go
index abbf4a2b0..e02a80fca 100644
--- a/ethutil/db.go
+++ b/ethutil/db.go
@@ -4,7 +4,7 @@ package ethutil
type Database interface {
Put(key []byte, value []byte)
Get(key []byte) ([]byte, error)
- GetKeys() []*Key
+ //GetKeys() []*Key
Delete(key []byte) error
LastKnownTD() []byte
Close()