diff options
author | obscuren <geffobscura@gmail.com> | 2014-11-29 04:20:32 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-11-29 04:20:32 +0800 |
commit | c8d0f8adc5145f650ced3ad5c8c008eb4b4094e2 (patch) | |
tree | 4fb17293fb424ddc319858907c76a065d31671f7 /miner | |
parent | 6ba8328077e0ccce4e2631fc83098a3e4e54a42d (diff) | |
download | go-tangerine-c8d0f8adc5145f650ced3ad5c8c008eb4b4094e2.tar.gz go-tangerine-c8d0f8adc5145f650ced3ad5c8c008eb4b4094e2.tar.zst go-tangerine-c8d0f8adc5145f650ced3ad5c8c008eb4b4094e2.zip |
Changed refund
Diffstat (limited to 'miner')
-rw-r--r-- | miner/miner.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miner/miner.go b/miner/miner.go index e3435f5a6..9152d532b 100644 --- a/miner/miner.go +++ b/miner/miner.go @@ -203,7 +203,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)) |