mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 21:56:43 +00:00
test wrapper: remove test reward and temp skip Bruncles
This commit is contained in:
parent
7c196ee19f
commit
39e8e52d83
1 changed files with 1 additions and 8 deletions
|
|
@ -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 {
|
||||
|
|
@ -37,6 +29,7 @@ func TestBcValidBlockTests(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestBcUncleTests(t *testing.T) {
|
||||
t.Skip() // TODO: unskip once Christoph has regenerated it.
|
||||
err := RunBlockTest(filepath.Join(blockTestDir, "bcUncleTest.json"), BlockSkipTests)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
|
|
|
|||
Loading…
Reference in a new issue