diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-02-13 23:13:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-13 23:13:40 +0800 |
commit | 0850f68fd17586370b102aa516739476db4913c2 (patch) | |
tree | 5d2f140139f3763a7da3c20a88acff96b58ec8ad /tests/state_test.go | |
parent | f8f428cc18c5f70814d7b3937128781bac14bffd (diff) | |
parent | 57f4e9025757254536a738bb4771712038f1e763 (diff) | |
download | dexon-0850f68fd17586370b102aa516739476db4913c2.tar dexon-0850f68fd17586370b102aa516739476db4913c2.tar.gz dexon-0850f68fd17586370b102aa516739476db4913c2.tar.bz2 dexon-0850f68fd17586370b102aa516739476db4913c2.tar.lz dexon-0850f68fd17586370b102aa516739476db4913c2.tar.xz dexon-0850f68fd17586370b102aa516739476db4913c2.tar.zst dexon-0850f68fd17586370b102aa516739476db4913c2.zip |
Merge pull request #3668 from obscuren/revert-gas64
Revert "params: core, core/vm, miner: 64bit gas instructions (#3514)"
Diffstat (limited to 'tests/state_test.go')
-rw-r--r-- | tests/state_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/state_test.go b/tests/state_test.go index 0b77f7276..97c4e5eeb 100644 --- a/tests/state_test.go +++ b/tests/state_test.go @@ -237,13 +237,13 @@ func TestWallet(t *testing.T) { } func TestStateTestsRandom(t *testing.T) { - t.Skip() chainConfig := ¶ms.ChainConfig{ HomesteadBlock: big.NewInt(1150000), } fns, _ := filepath.Glob("./files/StateTests/RandomTests/*") for _, fn := range fns { + t.Log("running:", fn) if err := RunStateTest(chainConfig, fn, StateSkipTests); err != nil { t.Error(fn, err) } |