diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-03 21:05:19 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-03 21:05:19 +0800 |
commit | 82405501872385b240012070bad2f0eda643d423 (patch) | |
tree | 97fcdb3fb3be607d0b21e5da01bbd0f33372ffc2 /ethereum.go | |
parent | 709eff4ea77b965cdf763ada8ab248e3d850406f (diff) | |
download | go-tangerine-82405501872385b240012070bad2f0eda643d423.tar.gz go-tangerine-82405501872385b240012070bad2f0eda643d423.tar.zst go-tangerine-82405501872385b240012070bad2f0eda643d423.zip |
updated to types
Diffstat (limited to 'ethereum.go')
-rw-r--r-- | ethereum.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereum.go b/ethereum.go index 879a14bd5..530d26fce 100644 --- a/ethereum.go +++ b/ethereum.go @@ -129,7 +129,7 @@ func New(db ethutil.Database, clientIdentity wire.ClientIdentity, keyManager *cr ethereum.blockPool = NewBlockPool(ethereum) ethereum.txPool = chain.NewTxPool(ethereum) - ethereum.blockChain = chain.NewChainManager() + ethereum.blockChain = chain.NewChainManager(ethereum.EventMux()) ethereum.blockManager = chain.NewBlockManager(ethereum) ethereum.blockChain.SetProcessor(ethereum.blockManager) |