diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-02 19:55:58 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-02 19:55:58 +0800 |
commit | ed64434dcc10347ad9846182ece2d71238138de9 (patch) | |
tree | 288190920f552cd559895f60a823a4209144507e /ethereal/ui/html_container.go | |
parent | f1da6f0564696f4fb5a6c04d1b9e24ed12432d63 (diff) | |
download | go-tangerine-ed64434dcc10347ad9846182ece2d71238138de9.tar go-tangerine-ed64434dcc10347ad9846182ece2d71238138de9.tar.gz go-tangerine-ed64434dcc10347ad9846182ece2d71238138de9.tar.bz2 go-tangerine-ed64434dcc10347ad9846182ece2d71238138de9.tar.lz go-tangerine-ed64434dcc10347ad9846182ece2d71238138de9.tar.xz go-tangerine-ed64434dcc10347ad9846182ece2d71238138de9.tar.zst go-tangerine-ed64434dcc10347ad9846182ece2d71238138de9.zip |
Moved public interface
Diffstat (limited to 'ethereal/ui/html_container.go')
-rw-r--r-- | ethereal/ui/html_container.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ethereal/ui/html_container.go b/ethereal/ui/html_container.go index 16cc531f2..e3e48bfcc 100644 --- a/ethereal/ui/html_container.go +++ b/ethereal/ui/html_container.go @@ -3,8 +3,8 @@ package ethui import ( "errors" "github.com/ethereum/eth-go/ethchain" + "github.com/ethereum/eth-go/ethpub" "github.com/ethereum/eth-go/ethutil" - "github.com/ethereum/go-ethereum/utils" "github.com/go-qml/qml" "math/big" "path/filepath" @@ -57,12 +57,12 @@ func (app *HtmlApplication) Window() *qml.Window { } func (app *HtmlApplication) NewBlock(block *ethchain.Block) { - b := &utils.PBlock{Number: int(block.BlockInfo().Number), Hash: ethutil.Hex(block.Hash())} + b := ðpub.PBlock{Number: int(block.BlockInfo().Number), Hash: ethutil.Hex(block.Hash())} app.webView.Call("onNewBlockCb", b) } func (app *HtmlApplication) ObjectChanged(stateObject *ethchain.StateObject) { - app.webView.Call("onObjectChangeCb", utils.NewPStateObject(stateObject)) + app.webView.Call("onObjectChangeCb", ethpub.NewPStateObject(stateObject)) } func (app *HtmlApplication) StorageChanged(stateObject *ethchain.StateObject, addr []byte, value *big.Int) { |