go-ethereum/eth/backend_test.go
2021-08-07 14:27:08 +10:00

25 lines
839 B
Go

package eth
import (
"math/big"
"testing"
"github.com/ethereum/go-ethereum/params"
)
func TestRewardInflation(t *testing.T) {
for i := 0; i < 100; i++ {
chainReward := new(big.Int).Mul(new(big.Int).SetUint64(250), new(big.Int).SetUint64(params.Ether))
chainReward = rewardInflation(chainReward, uint64(i), 10)
halfReward := new(big.Int).Mul(new(big.Int).SetUint64(125), new(big.Int).SetUint64(params.Ether))
if 20 <= i && i < 60 && chainReward.Cmp(halfReward) != 0 {
t.Error("Fail tor calculate reward inflation for 2 -> 5 years", "chainReward", chainReward)
}
quarterReward := new(big.Int).Mul(new(big.Int).SetUint64(62.5*1000), new(big.Int).SetUint64(1e15))
if 60 <= i && chainReward.Cmp(quarterReward) != 0 {
t.Error("Fail tor calculate reward inflation above 6 years", "chainReward", chainReward)
}
}
}