From 6a084089bed138853516df3277ba51687b5a23ee Mon Sep 17 00:00:00 2001 From: Yohan Graterol Date: Tue, 20 Feb 2018 11:23:53 -0500 Subject: [PATCH] Modify the treasury percent --- 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 af78df2bdd..aec110e247 100644 --- a/consensus/ethash/consensus.go +++ b/consensus/ethash/consensus.go @@ -639,5 +639,5 @@ func getTreasuryPercent(header *types.Header) int64 { factorReduction := new(big.Int).Set(header.Number) factorReduction.Div(factorReduction, big.NewInt(2160000)) - return 10 - (2 * factorReduction.Int64()) + return 30 - (2 * factorReduction.Int64()) }