Fixed merge
This commit is contained in:
@ -179,7 +179,6 @@ func (self *Miner) mine() {
|
||||
chainMan = self.eth.ChainManager()
|
||||
block = chainMan.NewBlock(self.Coinbase)
|
||||
)
|
||||
block.MinGasPrice = self.MinAcceptedGasPrice
|
||||
|
||||
// Apply uncles
|
||||
if len(self.uncles) > 0 {
|
||||
@ -206,7 +205,7 @@ func (self *Miner) mine() {
|
||||
// Accumulate the rewards included for this block
|
||||
blockManager.AccumelateRewards(block.State(), block, parent)
|
||||
|
||||
block.State().Update()
|
||||
block.State().Update(nil)
|
||||
|
||||
minerlogger.Infof("Mining on block. Includes %v transactions", len(transactions))
|
||||
|
||||
|
Reference in New Issue
Block a user