aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-04-16 02:16:07 +0800
committerchriseth <c@ethdev.com>2016-04-16 02:16:07 +0800
commitd77a13878acc55b5e8a73f280d34472f8a7a8e62 (patch)
treed2b41b08f6c46ff83b11714d53242c7492a476a9 /test
parent5c3b41afb019a25a8e2784dbfa176a536d3eb03d (diff)
downloaddexon-solidity-d77a13878acc55b5e8a73f280d34472f8a7a8e62.tar.gz
dexon-solidity-d77a13878acc55b5e8a73f280d34472f8a7a8e62.tar.zst
dexon-solidity-d77a13878acc55b5e8a73f280d34472f8a7a8e62.zip
Explicitly init seal engine.
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/solidityExecutionFramework.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/test/libsolidity/solidityExecutionFramework.h b/test/libsolidity/solidityExecutionFramework.h
index a7192aca..3fcbfaed 100644
--- a/test/libsolidity/solidityExecutionFramework.h
+++ b/test/libsolidity/solidityExecutionFramework.h
@@ -47,10 +47,10 @@ class ExecutionFramework
{
public:
ExecutionFramework():
- m_sealEngineInit(),
- m_sealEngine(eth::ChainParams().createSealEngine()),
m_state(0)
{
+ eth::NoProof::init();
+ m_sealEngine.reset(eth::ChainParams().createSealEngine());
if (g_logVerbosity != -1)
g_logVerbosity = 0;
//m_state.resetCurrent();
@@ -239,17 +239,6 @@ public:
};
private:
- struct sealEngineInit
- {
- sealEngineInit()
- {
- dev::eth::BasicAuthority::init();
- dev::eth::NoProof::init();
- }
- };
-
- sealEngineInit m_sealEngineInit;
-
template <class CppFunction, class... Args>
auto callCppAndEncodeResult(CppFunction const& _cppFunction, Args const&... _arguments)
-> typename std::enable_if<std::is_void<decltype(_cppFunction(_arguments...))>::value, bytes>::type