aboutsummaryrefslogtreecommitdiffstats
path: root/miner
diff options
context:
space:
mode:
authorGustav Simonsson <gustav.simonsson@gmail.com>2015-02-04 06:09:39 +0800
committerGustav Simonsson <gustav.simonsson@gmail.com>2015-02-04 06:09:39 +0800
commit697c2b5dc16653228c5264d01c08163cebda3aeb (patch)
treeb66a5e52908c5ab571bfaa97fb47525dd572f6f0 /miner
parent4dc283c0fb5d886ce8d3638c3322af7e6f2a3b2e (diff)
downloadgo-tangerine-697c2b5dc16653228c5264d01c08163cebda3aeb.tar
go-tangerine-697c2b5dc16653228c5264d01c08163cebda3aeb.tar.gz
go-tangerine-697c2b5dc16653228c5264d01c08163cebda3aeb.tar.bz2
go-tangerine-697c2b5dc16653228c5264d01c08163cebda3aeb.tar.lz
go-tangerine-697c2b5dc16653228c5264d01c08163cebda3aeb.tar.xz
go-tangerine-697c2b5dc16653228c5264d01c08163cebda3aeb.tar.zst
go-tangerine-697c2b5dc16653228c5264d01c08163cebda3aeb.zip
Correct block parent timestamp check and typos
Diffstat (limited to 'miner')
-rw-r--r--miner/miner.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/miner/miner.go b/miner/miner.go
index 52dd5687d..7ebf00d6a 100644
--- a/miner/miner.go
+++ b/miner/miner.go
@@ -206,7 +206,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())