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/ext_app.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/ext_app.go')
-rw-r--r-- | ethereal/ui/ext_app.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ethereal/ui/ext_app.go b/ethereal/ui/ext_app.go index 1021afea9..a215709d0 100644 --- a/ethereal/ui/ext_app.go +++ b/ethereal/ui/ext_app.go @@ -3,8 +3,8 @@ package ethui import ( "fmt" "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" ) @@ -22,7 +22,7 @@ type AppContainer interface { } type ExtApplication struct { - *utils.PEthereum + *ethpub.PEthereum blockChan chan ethutil.React changeChan chan ethutil.React @@ -35,7 +35,7 @@ type ExtApplication struct { func NewExtApplication(container AppContainer, lib *UiLib) *ExtApplication { app := &ExtApplication{ - utils.NewPEthereum(lib.eth), + ethpub.NewPEthereum(lib.eth), make(chan ethutil.React, 1), make(chan ethutil.React, 1), make(chan bool), |