mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-09 01:26:36 +00:00
Fix merge conflict
This commit is contained in:
commit
c99aa7bdcf
3 changed files with 4 additions and 4 deletions
|
|
@ -34,7 +34,7 @@ type ExtApplication struct {
|
||||||
|
|
||||||
func NewExtApplication(container AppContainer, lib *UiLib) *ExtApplication {
|
func NewExtApplication(container AppContainer, lib *UiLib) *ExtApplication {
|
||||||
app := &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 ethutil.React, 1),
|
make(chan ethutil.React, 1),
|
||||||
make(chan bool),
|
make(chan bool),
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ func New(ethereum *eth.Ethereum) *Gui {
|
||||||
//ethereum.StateManager().WatchAddr(addr)
|
//ethereum.StateManager().WatchAddr(addr)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub := ethpub.NewPEthereum(ethereum.StateManager(), ethereum.BlockChain(), ethereum.TxPool())
|
pub := ethpub.NewPEthereum(ethereum)
|
||||||
|
|
||||||
return &Gui{eth: ethereum, lib: lib, txDb: db, addr: addr, pub: pub}
|
return &Gui{eth: ethereum, lib: lib, txDb: db, addr: addr, pub: pub}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue