aboutsummaryrefslogtreecommitdiffstats
path: root/ethdb
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-02-28 19:18:41 +0800
committerobscuren <geffobscura@gmail.com>2014-02-28 19:18:41 +0800
commitc0fcefa3a023c643040b3d9e300980bd32c33dff (patch)
tree239b7fc192b42aeb26b7e5e41fefa2e2c1cf2595 /ethdb
parentc9f3d1c00ba70016be4bb871f9ecd50d456c6985 (diff)
downloadgo-tangerine-c0fcefa3a023c643040b3d9e300980bd32c33dff.tar
go-tangerine-c0fcefa3a023c643040b3d9e300980bd32c33dff.tar.gz
go-tangerine-c0fcefa3a023c643040b3d9e300980bd32c33dff.tar.bz2
go-tangerine-c0fcefa3a023c643040b3d9e300980bd32c33dff.tar.lz
go-tangerine-c0fcefa3a023c643040b3d9e300980bd32c33dff.tar.xz
go-tangerine-c0fcefa3a023c643040b3d9e300980bd32c33dff.tar.zst
go-tangerine-c0fcefa3a023c643040b3d9e300980bd32c33dff.zip
Added a GetKeys method to support multiple accounts
Diffstat (limited to 'ethdb')
-rw-r--r--ethdb/memory_database.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/ethdb/memory_database.go b/ethdb/memory_database.go
index 9e91eb7d6..b0fa64ed7 100644
--- a/ethdb/memory_database.go
+++ b/ethdb/memory_database.go
@@ -26,6 +26,12 @@ func (db *MemDatabase) Get(key []byte) ([]byte, error) {
return db.db[string(key)], nil
}
+func (db *MemDatabase) GetKeys() []*ethutil.Key {
+ data, _ := db.Get([]byte("KeyRing"))
+
+ return []*ethutil.Key{ethutil.NewKeyFromBytes(data)}
+}
+
func (db *MemDatabase) Delete(key []byte) error {
delete(db.db, string(key))