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_util.go | |
parent | f8f428cc18c5f70814d7b3937128781bac14bffd (diff) | |
parent | 57f4e9025757254536a738bb4771712038f1e763 (diff) | |
download | go-tangerine-0850f68fd17586370b102aa516739476db4913c2.tar go-tangerine-0850f68fd17586370b102aa516739476db4913c2.tar.gz go-tangerine-0850f68fd17586370b102aa516739476db4913c2.tar.bz2 go-tangerine-0850f68fd17586370b102aa516739476db4913c2.tar.lz go-tangerine-0850f68fd17586370b102aa516739476db4913c2.tar.xz go-tangerine-0850f68fd17586370b102aa516739476db4913c2.tar.zst go-tangerine-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_util.go')
-rw-r--r-- | tests/state_test_util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/state_test_util.go b/tests/state_test_util.go index e8ab29d14..5469a4c71 100644 --- a/tests/state_test_util.go +++ b/tests/state_test_util.go @@ -108,7 +108,7 @@ func runStateTests(chainConfig *params.ChainConfig, tests map[string]VmTest, ski } for name, test := range tests { - if skipTest[name] /*|| name != "JUMPDEST_Attack"*/ { + if skipTest[name] { glog.Infoln("Skipping state test", name) continue } |