diff options
author | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-07-07 16:55:39 +0800 |
---|---|---|
committer | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-07-07 16:55:39 +0800 |
commit | f9e2e5276f64d5a9c93fb55adda06365be14c26a (patch) | |
tree | 97aa911429cdda87d8a07c8566e0803a261e23b2 /ethereal/ext_app.go | |
parent | 8e5117444ebfe4eac4aa96ae431dba5c67b2fcc6 (diff) | |
parent | 1e4ae24126d21305c8fcbebd057ce4ec28ddd242 (diff) | |
download | go-tangerine-f9e2e5276f64d5a9c93fb55adda06365be14c26a.tar.gz go-tangerine-f9e2e5276f64d5a9c93fb55adda06365be14c26a.tar.zst go-tangerine-f9e2e5276f64d5a9c93fb55adda06365be14c26a.zip |
Merge pull request #100 from ethersphere/feature/ethutil-refactor
ethreact - Feature/ethutil refactor
Diffstat (limited to 'ethereal/ext_app.go')
-rw-r--r-- | ethereal/ext_app.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ethereal/ext_app.go b/ethereal/ext_app.go index 17c342a1b..c02f5ccb3 100644 --- a/ethereal/ext_app.go +++ b/ethereal/ext_app.go @@ -4,6 +4,7 @@ import ( "fmt" "github.com/ethereum/eth-go/ethchain" "github.com/ethereum/eth-go/ethpub" + "github.com/ethereum/eth-go/ethreact" "github.com/ethereum/eth-go/ethutil" "github.com/go-qml/qml" ) @@ -24,8 +25,8 @@ type AppContainer interface { type ExtApplication struct { *ethpub.PEthereum - blockChan chan ethutil.React - changeChan chan ethutil.React + blockChan chan ethreact.Event + changeChan chan ethreact.Event quitChan chan bool watcherQuitChan chan bool @@ -37,8 +38,8 @@ type ExtApplication struct { func NewExtApplication(container AppContainer, lib *UiLib) *ExtApplication { app := &ExtApplication{ ethpub.NewPEthereum(lib.eth), - make(chan ethutil.React, 1), - make(chan ethutil.React, 1), + make(chan ethreact.Event), + make(chan ethreact.Event), make(chan bool), make(chan bool), container, |