diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-11-24 23:24:04 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-11-25 05:12:54 +0800 |
commit | 12d654a6fc4580f9194a931032ebf0e1b1927279 (patch) | |
tree | 7d7654ee3c405f16a5361f52bb8bf84789989144 /tests/state_test_util.go | |
parent | c04c8f10f04a41e762589358418c65fd99891bb4 (diff) | |
download | dexon-12d654a6fc4580f9194a931032ebf0e1b1927279.tar.gz dexon-12d654a6fc4580f9194a931032ebf0e1b1927279.tar.zst dexon-12d654a6fc4580f9194a931032ebf0e1b1927279.zip |
core, core/state: fixed consensus issue added touch revert
Implemented proper touch revert journal entries and copied a Parity
consensus bug in order to remain in sync with the current longest chain.
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 01998c2a4..117bb4b28 100644 --- a/tests/state_test_util.go +++ b/tests/state_test_util.go @@ -111,7 +111,7 @@ func runStateTests(chainConfig *params.ChainConfig, tests map[string]VmTest, ski } for name, test := range tests { - if skipTest[name] /*|| name != "NonZeroValue_CALL_ToEmpty"*/ { + if skipTest[name] /*|| name != "EXP_Empty"*/ { glog.Infoln("Skipping state test", name) continue } |