diff options
author | CJentzsch <jentzsch.software@gmail.com> | 2015-03-04 00:36:09 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-03-06 19:19:44 +0800 |
commit | 58b82aef3ef32131df0783e04c68d1d46445b98f (patch) | |
tree | 2a15111631d7921209ae6039a5d5b7c10a474e99 /TestHelper.h | |
parent | ac0379ba0fd5a6b414b2b3c16dd89d3c03e00028 (diff) | |
download | dexon-solidity-58b82aef3ef32131df0783e04c68d1d46445b98f.tar.gz dexon-solidity-58b82aef3ef32131df0783e04c68d1d46445b98f.tar.zst dexon-solidity-58b82aef3ef32131df0783e04c68d1d46445b98f.zip |
remove genesis state from state tests
Conflicts:
test/state.cpp
Diffstat (limited to 'TestHelper.h')
-rw-r--r-- | TestHelper.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/TestHelper.h b/TestHelper.h index c4dde1a6..75edcbf3 100644 --- a/TestHelper.h +++ b/TestHelper.h @@ -45,9 +45,8 @@ namespace test class ImportTest { public: - ImportTest(json_spirit::mObject& _o) : m_TestObject(_o) {} + ImportTest(json_spirit::mObject& _o) : m_statePre(Address(), OverlayDB(), eth::BaseState::Empty), m_statePost(Address(), OverlayDB(), eth::BaseState::Empty), m_TestObject(_o) {} ImportTest(json_spirit::mObject& _o, bool isFiller); - // imports void importEnv(json_spirit::mObject& _o); void importState(json_spirit::mObject& _o, eth::State& _state); |