aboutsummaryrefslogtreecommitdiffstats
path: root/ethdb
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-21 21:36:20 +0800
committerobscuren <geffobscura@gmail.com>2015-03-21 21:36:20 +0800
commit06697775d1edc3263a7915cee02a94bea488494c (patch)
tree1d39f205327ee47115a7fe2947ccd5a4ba7a4073 /ethdb
parentabce6804a085087770be587e039fd4669d5eac26 (diff)
parent069c87b960c48864dc4f1b9086adf582e1dc88a9 (diff)
downloaddexon-06697775d1edc3263a7915cee02a94bea488494c.tar
dexon-06697775d1edc3263a7915cee02a94bea488494c.tar.gz
dexon-06697775d1edc3263a7915cee02a94bea488494c.tar.bz2
dexon-06697775d1edc3263a7915cee02a94bea488494c.tar.lz
dexon-06697775d1edc3263a7915cee02a94bea488494c.tar.xz
dexon-06697775d1edc3263a7915cee02a94bea488494c.tar.zst
dexon-06697775d1edc3263a7915cee02a94bea488494c.zip
Merge branch 'conversion' of github.com-obscure:ethereum/go-ethereum into conversion
Diffstat (limited to 'ethdb')
-rw-r--r--ethdb/memory_database.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethdb/memory_database.go b/ethdb/memory_database.go
index d914f47f8..d4988d0d8 100644
--- a/ethdb/memory_database.go
+++ b/ethdb/memory_database.go
@@ -49,7 +49,7 @@ func (db *MemDatabase) Print() {
for key, val := range db.db {
fmt.Printf("%x(%d): ", key, len(key))
node := common.NewValueFromBytes(val)
- fmt.Printf("%q\n", node.Interface())
+ fmt.Printf("%q\n", node.Val)
}
}