aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2015-07-25 18:06:17 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2015-07-25 23:59:19 +0800
commit8c0619d29cb0a2d06bbd38ad2bfc067d641aba3a (patch)
tree070b9302e0ab10778839b0b5fabffb179af782c0 /tests
parent16a3a4303f52cafc02b3cc593676b703defece8e (diff)
downloadgo-tangerine-8c0619d29cb0a2d06bbd38ad2bfc067d641aba3a.tar
go-tangerine-8c0619d29cb0a2d06bbd38ad2bfc067d641aba3a.tar.gz
go-tangerine-8c0619d29cb0a2d06bbd38ad2bfc067d641aba3a.tar.bz2
go-tangerine-8c0619d29cb0a2d06bbd38ad2bfc067d641aba3a.tar.lz
go-tangerine-8c0619d29cb0a2d06bbd38ad2bfc067d641aba3a.tar.xz
go-tangerine-8c0619d29cb0a2d06bbd38ad2bfc067d641aba3a.tar.zst
go-tangerine-8c0619d29cb0a2d06bbd38ad2bfc067d641aba3a.zip
core: 5 ether block reward
Diffstat (limited to 'tests')
-rw-r--r--tests/block_test.go8
1 files changed, 8 insertions, 0 deletions
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 {