diff options
author | obscuren <geffobscura@gmail.com> | 2014-02-18 08:31:31 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-02-18 08:31:31 +0800 |
commit | a5b7279cb507de93fde39d86c414e417f2d0b3e3 (patch) | |
tree | 062a422e51a9b41eb66204d5bfaba95d1b2aa0c0 /ethchain/fees.go | |
parent | 7413552a28c538ca4f33d0dafe28907b7b761863 (diff) | |
download | dexon-a5b7279cb507de93fde39d86c414e417f2d0b3e3.tar dexon-a5b7279cb507de93fde39d86c414e417f2d0b3e3.tar.gz dexon-a5b7279cb507de93fde39d86c414e417f2d0b3e3.tar.bz2 dexon-a5b7279cb507de93fde39d86c414e417f2d0b3e3.tar.lz dexon-a5b7279cb507de93fde39d86c414e417f2d0b3e3.tar.xz dexon-a5b7279cb507de93fde39d86c414e417f2d0b3e3.tar.zst dexon-a5b7279cb507de93fde39d86c414e417f2d0b3e3.zip |
Changed uncle block fee as to what it should be
Diffstat (limited to 'ethchain/fees.go')
-rw-r--r-- | ethchain/fees.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ethchain/fees.go b/ethchain/fees.go index 8f1646ab4..57017cdc9 100644 --- a/ethchain/fees.go +++ b/ethchain/fees.go @@ -13,7 +13,13 @@ var DataFee *big.Int = new(big.Int) var CryptoFee *big.Int = new(big.Int) var ExtroFee *big.Int = new(big.Int) -var BlockReward *big.Int = big.NewInt(1500000000000000000) +var BlockReward *big.Int = big.NewInt(1.5e+18) + +var UncleReward *big.Int = big.NewInt(1.125e+18) + +//var UncleReward *big.Int = big.NewInt(2e18) +var UncleInclusionReward *big.Int = big.NewInt(1.875e+17) + var Period1Reward *big.Int = new(big.Int) var Period2Reward *big.Int = new(big.Int) var Period3Reward *big.Int = new(big.Int) |