diff options
author | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-07-01 22:15:59 +0800 |
---|---|---|
committer | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-07-01 22:15:59 +0800 |
commit | 5e02d2b5866e9aeb4bc0ad0ec4479f2104131f51 (patch) | |
tree | 6d50a032f70e1b3709f47403fcc793e52ac9b4c9 /ethereal/ui/html_container.go | |
parent | 4fc60f340f6ef5ffe68e684ed44e5974fa08e8c8 (diff) | |
parent | ce88a73aa6e695a0b672da2d01baf14f03d514b0 (diff) | |
download | dexon-5e02d2b5866e9aeb4bc0ad0ec4479f2104131f51.tar dexon-5e02d2b5866e9aeb4bc0ad0ec4479f2104131f51.tar.gz dexon-5e02d2b5866e9aeb4bc0ad0ec4479f2104131f51.tar.bz2 dexon-5e02d2b5866e9aeb4bc0ad0ec4479f2104131f51.tar.lz dexon-5e02d2b5866e9aeb4bc0ad0ec4479f2104131f51.tar.xz dexon-5e02d2b5866e9aeb4bc0ad0ec4479f2104131f51.tar.zst dexon-5e02d2b5866e9aeb4bc0ad0ec4479f2104131f51.zip |
Merge pull request #96 from ethersphere/feature/keys
Feature/keys
Diffstat (limited to 'ethereal/ui/html_container.go')
-rw-r--r-- | ethereal/ui/html_container.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/ui/html_container.go b/ethereal/ui/html_container.go index d7dc80af7..f2ebd840c 100644 --- a/ethereal/ui/html_container.go +++ b/ethereal/ui/html_container.go @@ -116,7 +116,7 @@ func (app *HtmlApplication) Window() *qml.Window { } func (app *HtmlApplication) NewBlock(block *ethchain.Block) { - b := ðpub.PBlock{Number: int(block.BlockInfo().Number), Hash: ethutil.Hex(block.Hash())} + b := ðpub.PBlock{Number: int(block.BlockInfo().Number), Hash: ethutil.Bytes2Hex(block.Hash())} app.webView.Call("onNewBlockCb", b) } |