mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-15 12:36:48 +00:00
eth: use global event mux instead
This commit is contained in:
parent
f4a6470a7b
commit
61ca14bc44
1 changed files with 1 additions and 1 deletions
|
|
@ -191,7 +191,7 @@ func New(ctx *node.ServiceContext, config *Config) (*Ethereum, error) {
|
||||||
shutdownChan: make(chan bool),
|
shutdownChan: make(chan bool),
|
||||||
chainDb: chainDb,
|
chainDb: chainDb,
|
||||||
dappDb: dappDb,
|
dappDb: dappDb,
|
||||||
eventMux: &event.TypeMux{},
|
eventMux: ctx.EventMux,
|
||||||
accountManager: config.AccountManager,
|
accountManager: config.AccountManager,
|
||||||
etherbase: config.Etherbase,
|
etherbase: config.Etherbase,
|
||||||
netVersionId: config.NetworkId,
|
netVersionId: config.NetworkId,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue