Modify the treasury percent

This commit is contained in:
Yohan Graterol 2018-02-20 11:23:53 -05:00
parent 1fad0d7df2
commit 6a084089be
No known key found for this signature in database
GPG key ID: D8C4A70CC26A1F90

View file

@ -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())
}