diff options
Diffstat (limited to 'miner/miner.go')
-rw-r--r-- | miner/miner.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/miner/miner.go b/miner/miner.go index 795385424..c5bff5690 100644 --- a/miner/miner.go +++ b/miner/miner.go @@ -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)) |