From e2efc7b99f0648bab5b19858b6f55b729b5ffed0 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 20 Mar 2018 20:55:12 -0400 Subject: [PATCH] [ fixed issue I'd caused ] --- consensus/ethash/consensus.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/ethash/consensus.go b/consensus/ethash/consensus.go index 63d824ec8d..fe56122064 100644 --- a/consensus/ethash/consensus.go +++ b/consensus/ethash/consensus.go @@ -554,7 +554,7 @@ func accumulateRewards(config *params.ChainConfig, state *state.StateDB, header r.Mul(r, blockReward) r.Div(r, big8) state.AddBalance(uncle.Coinbase, r) - Initialised chain configuration + r.Div(blockReward, big32) reward.Add(reward, r) }