diff options
author | Jeffrey Wilcke <geffobscura@gmail.com> | 2015-07-29 21:01:42 +0800 |
---|---|---|
committer | Jeffrey Wilcke <geffobscura@gmail.com> | 2015-07-29 21:59:33 +0800 |
commit | 0cdc7647aaabb796d241ea257b2df2f0c26701d4 (patch) | |
tree | 67d8c438b7290c7b18317875d402c4b1b5bec820 /tests/block_test.go | |
parent | c5d7faefe9f6a26c839f8491003ac42f3160fb50 (diff) | |
download | go-tangerine-1.0.0.tar go-tangerine-1.0.0.tar.gz go-tangerine-1.0.0.tar.bz2 go-tangerine-1.0.0.tar.lz go-tangerine-1.0.0.tar.xz go-tangerine-1.0.0.tar.zst go-tangerine-1.0.0.zip |
tests: updatedv1.0.0
Diffstat (limited to 'tests/block_test.go')
-rw-r--r-- | tests/block_test.go | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/block_test.go b/tests/block_test.go index 6bb123184..f42b474b7 100644 --- a/tests/block_test.go +++ b/tests/block_test.go @@ -17,18 +17,10 @@ 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 { @@ -36,17 +28,6 @@ func TestBcValidBlockTests(t *testing.T) { } } -func TestBcUncleTests(t *testing.T) { - err := RunBlockTest(filepath.Join(blockTestDir, "bcUncleTest.json"), BlockSkipTests) - if err != nil { - t.Fatal(err) - } - err = RunBlockTest(filepath.Join(blockTestDir, "bcBruncleTest.json"), BlockSkipTests) - if err != nil { - t.Fatal(err) - } -} - func TestBcUncleHeaderValidityTests(t *testing.T) { err := RunBlockTest(filepath.Join(blockTestDir, "bcUncleHeaderValiditiy.json"), BlockSkipTests) if err != nil { |