diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-13 18:42:01 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-13 18:42:01 +0800 |
commit | 03371b74d7b169c0ad6ccf8868bc97c7fe85169d (patch) | |
tree | d8dd1e167e34c913a3fd6e500dad844837e9cd34 /ethereal/ui/ext_app.go | |
parent | 67820506cbb34f5fe66b7b08454019fb30a8ec5a (diff) | |
download | dexon-03371b74d7b169c0ad6ccf8868bc97c7fe85169d.tar.gz dexon-03371b74d7b169c0ad6ccf8868bc97c7fe85169d.tar.zst dexon-03371b74d7b169c0ad6ccf8868bc97c7fe85169d.zip |
Public ethereum interface uses EthManager
Diffstat (limited to 'ethereal/ui/ext_app.go')
-rw-r--r-- | ethereal/ui/ext_app.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/ui/ext_app.go b/ethereal/ui/ext_app.go index 93db0ade1..de5f15db6 100644 --- a/ethereal/ui/ext_app.go +++ b/ethereal/ui/ext_app.go @@ -34,7 +34,7 @@ type ExtApplication struct { func NewExtApplication(container AppContainer, lib *UiLib) *ExtApplication { app := &ExtApplication{ - ethpub.NewPEthereum(lib.eth.StateManager(), lib.eth.BlockChain(), lib.eth.TxPool()), + ethpub.NewPEthereum(lib.eth), make(chan ethutil.React, 1), make(chan ethutil.React, 1), make(chan bool), |