aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/bindings.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-23 19:12:53 +0800
committerobscuren <geffobscura@gmail.com>2015-03-23 19:12:53 +0800
commit6657d544db4eefec24ebd280940048f25ed85186 (patch)
treea65998614ecb147e0e67107aa34ac306d027ccc1 /cmd/mist/bindings.go
parent0be6d3404898a8e68f2f78cfa6b64d6b1f314fb0 (diff)
parentdbb2af6016c952b0f49d552a10fc59af0a9f7ce7 (diff)
downloaddexon-6657d544db4eefec24ebd280940048f25ed85186.tar
dexon-6657d544db4eefec24ebd280940048f25ed85186.tar.gz
dexon-6657d544db4eefec24ebd280940048f25ed85186.tar.bz2
dexon-6657d544db4eefec24ebd280940048f25ed85186.tar.lz
dexon-6657d544db4eefec24ebd280940048f25ed85186.tar.xz
dexon-6657d544db4eefec24ebd280940048f25ed85186.tar.zst
dexon-6657d544db4eefec24ebd280940048f25ed85186.zip
Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop
Diffstat (limited to 'cmd/mist/bindings.go')
-rw-r--r--cmd/mist/bindings.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mist/bindings.go b/cmd/mist/bindings.go
index 5d08e7dd7..5d45d927e 100644
--- a/cmd/mist/bindings.go
+++ b/cmd/mist/bindings.go
@@ -67,7 +67,7 @@ func (self *Gui) DumpState(hash, path string) {
i, _ := strconv.Atoi(hash[1:])
block = self.eth.ChainManager().GetBlockByNumber(uint64(i))
} else {
- block = self.eth.ChainManager().GetBlock(common.Hex2Bytes(hash))
+ block = self.eth.ChainManager().GetBlock(common.HexToHash(hash))
}
if block == nil {