diff options
author | Jeffrey Wilcke <geffobscura@gmail.com> | 2015-07-25 18:06:17 +0800 |
---|---|---|
committer | Jeffrey Wilcke <geffobscura@gmail.com> | 2015-07-25 23:47:20 +0800 |
commit | 9afda6ab8cb72269b299664a69edb545a5aebeb6 (patch) | |
tree | 716601696531a7b9bd5e145d41d508489957c552 | |
parent | 5001f778aac5cf77a200da7829f8d28547208fed (diff) | |
download | go-tangerine-9afda6ab8cb72269b299664a69edb545a5aebeb6.tar go-tangerine-9afda6ab8cb72269b299664a69edb545a5aebeb6.tar.gz go-tangerine-9afda6ab8cb72269b299664a69edb545a5aebeb6.tar.bz2 go-tangerine-9afda6ab8cb72269b299664a69edb545a5aebeb6.tar.lz go-tangerine-9afda6ab8cb72269b299664a69edb545a5aebeb6.tar.xz go-tangerine-9afda6ab8cb72269b299664a69edb545a5aebeb6.tar.zst go-tangerine-9afda6ab8cb72269b299664a69edb545a5aebeb6.zip |
core: 5 ether block reward
-rw-r--r-- | core/chain_makers_test.go | 2 | ||||
-rw-r--r-- | core/fees.go | 2 | ||||
-rw-r--r-- | tests/block_test.go | 8 |
3 files changed, 10 insertions, 2 deletions
diff --git a/core/chain_makers_test.go b/core/chain_makers_test.go index 715e4c7ac..d7730aec8 100644 --- a/core/chain_makers_test.go +++ b/core/chain_makers_test.go @@ -90,5 +90,5 @@ func ExampleGenerateChain() { // last block: #5 // balance of addr1: 989000 // balance of addr2: 10000 - // balance of addr3: 5906250000000001000 + // balance of addr3: 19687500000000001000 } diff --git a/core/fees.go b/core/fees.go index 3f6177975..29ba5c5a6 100644 --- a/core/fees.go +++ b/core/fees.go @@ -20,4 +20,4 @@ import ( "math/big" ) -var BlockReward *big.Int = big.NewInt(1.5e+18) +var BlockReward *big.Int = big.NewInt(5e+18) diff --git a/tests/block_test.go b/tests/block_test.go index 40a210a3e..5019b758d 100644 --- a/tests/block_test.go +++ b/tests/block_test.go @@ -17,10 +17,18 @@ package tests import ( + "math/big" "path/filepath" "testing" + + "github.com/ethereum/go-ethereum/core" ) +func init() { + // XXX remove me when block tests have been updated + core.BlockReward = big.NewInt(1.5e+18) +} + func TestBcValidBlockTests(t *testing.T) { err := RunBlockTest(filepath.Join(blockTestDir, "bcValidBlockTest.json"), BlockSkipTests) if err != nil { |