diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-02-06 04:23:56 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-02-06 04:23:56 +0800 |
commit | 47129428fe346b0b5595d3c5ffc88432071af4a3 (patch) | |
tree | e3c9ec0f5b66a82f78aad63ae7e6b40043349989 /miner | |
parent | 2f30a27b2be39197dd6e9f6aabe6fe11026bd2f6 (diff) | |
parent | 697c2b5dc16653228c5264d01c08163cebda3aeb (diff) | |
download | dexon-47129428fe346b0b5595d3c5ffc88432071af4a3.tar.gz dexon-47129428fe346b0b5595d3c5ffc88432071af4a3.tar.zst dexon-47129428fe346b0b5595d3c5ffc88432071af4a3.zip |
Merge pull request #290 from Gustav-Simonsson/correct_block_parent_timestamp_check
Correct block parent timestamp check and typos
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 11d09d953..63c8e22a7 100644 --- a/miner/miner.go +++ b/miner/miner.go @@ -204,7 +204,7 @@ func (self *Miner) mine() { block.SetReceipts(receipts) // Accumulate the rewards included for this block - blockProcessor.AccumelateRewards(state, block, parent) + blockProcessor.AccumulateRewards(state, block, parent) state.Update(ethutil.Big0) block.SetRoot(state.Root()) |