aboutsummaryrefslogtreecommitdiffstats
path: root/miner/miner.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-02-06 04:23:56 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-02-06 04:23:56 +0800
commit47129428fe346b0b5595d3c5ffc88432071af4a3 (patch)
treee3c9ec0f5b66a82f78aad63ae7e6b40043349989 /miner/miner.go
parent2f30a27b2be39197dd6e9f6aabe6fe11026bd2f6 (diff)
parent697c2b5dc16653228c5264d01c08163cebda3aeb (diff)
downloaddexon-47129428fe346b0b5595d3c5ffc88432071af4a3.tar
dexon-47129428fe346b0b5595d3c5ffc88432071af4a3.tar.gz
dexon-47129428fe346b0b5595d3c5ffc88432071af4a3.tar.bz2
dexon-47129428fe346b0b5595d3c5ffc88432071af4a3.tar.lz
dexon-47129428fe346b0b5595d3c5ffc88432071af4a3.tar.xz
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/miner.go')
-rw-r--r--miner/miner.go2
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())