From 9afda6ab8cb72269b299664a69edb545a5aebeb6 Mon Sep 17 00:00:00 2001 From: Jeffrey Wilcke Date: Sat, 25 Jul 2015 12:06:17 +0200 Subject: core: 5 ether block reward --- tests/block_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests') 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 { -- cgit