diff options
author | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-02-04 06:09:39 +0800 |
---|---|---|
committer | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-02-04 06:09:39 +0800 |
commit | 697c2b5dc16653228c5264d01c08163cebda3aeb (patch) | |
tree | b66a5e52908c5ab571bfaa97fb47525dd572f6f0 /miner | |
parent | 4dc283c0fb5d886ce8d3638c3322af7e6f2a3b2e (diff) | |
download | go-tangerine-697c2b5dc16653228c5264d01c08163cebda3aeb.tar.gz 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.go | 2 |
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()) |