mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-04-23 10:02:25 +00:00
Merge pull request #2020 from bas-vk/issue2016
eth package creates new event mux
This commit is contained in:
commit
f801ec78ce
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