diff options
author | Jeffrey Wilcke <geffobscura@gmail.com> | 2016-01-20 06:50:00 +0800 |
---|---|---|
committer | Jeffrey Wilcke <geffobscura@gmail.com> | 2016-02-18 17:11:48 +0800 |
commit | b6d88a0e9f9aaeb47d585d79c768d457b545af90 (patch) | |
tree | 49e667cd929ce6b561961ac741d9ff0f82e61261 /tests/state_test.go | |
parent | 4f4d2b647488eaa056613fa6f026229ac91f066a (diff) | |
download | dexon-b6d88a0e9f9aaeb47d585d79c768d457b545af90.tar.gz dexon-b6d88a0e9f9aaeb47d585d79c768d457b545af90.tar.zst dexon-b6d88a0e9f9aaeb47d585d79c768d457b545af90.zip |
core, core/vm, crypto: fixes for homestead
* Removed some strange code that didn't apply state reverting properly
* Refactored code setting from vm & state transition to the executioner
* Updated tests
Diffstat (limited to 'tests/state_test.go')
-rw-r--r-- | tests/state_test.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/state_test.go b/tests/state_test.go index 1ee162613..4c1820944 100644 --- a/tests/state_test.go +++ b/tests/state_test.go @@ -130,6 +130,15 @@ func TestStateTransaction(t *testing.T) { } } +func TestStateTransition(t *testing.T) { + params.HomesteadBlock = big.NewInt(1000000) + + fn := filepath.Join(stateTestDir, "stTransitionTest.json") + if err := RunStateTest(fn, StateSkipTests); err != nil { + t.Error(err) + } +} + func TestCallCreateCallCode(t *testing.T) { params.HomesteadBlock = big.NewInt(1000000) |