cmd/utils, eth: core.NewBlockProcessor no longer needs TxPool

This commit is contained in:
Felix Lange
2015-06-03 15:56:25 +02:00
committed by obscuren
parent ec7a2c3442
commit 5197aed7db
2 changed files with 2 additions and 3 deletions

View File

@ -345,8 +345,7 @@ func MakeChain(ctx *cli.Context) (chain *core.ChainManager, blockDB, stateDB, ex
eventMux := new(event.TypeMux)
pow := ethash.New()
chain = core.NewChainManager(blockDB, stateDB, pow, eventMux)
txpool := core.NewTxPool(eventMux, chain.State, chain.GasLimit)
proc := core.NewBlockProcessor(stateDB, extraDB, pow, txpool, chain, eventMux)
proc := core.NewBlockProcessor(stateDB, extraDB, pow, chain, eventMux)
chain.SetProcessor(proc)
return chain, blockDB, stateDB, extraDB
}