aboutsummaryrefslogtreecommitdiffstats
path: root/test/contracts/FixedFeeRegistrar.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2016-08-27 01:32:18 +0800
committerGitHub <noreply@github.com>2016-08-27 01:32:18 +0800
commitfb7836d87bba0eacb2454d6c50b1209365a89b6d (patch)
tree81810b473d4ae5f76e2cb97a959ff234382966ac /test/contracts/FixedFeeRegistrar.cpp
parent69acd25888007c536bef22e350725cf444db58ad (diff)
parent56558c0db2ad1e64aa81aaa05820388c2ba65a45 (diff)
downloaddexon-solidity-fb7836d87bba0eacb2454d6c50b1209365a89b6d.tar.gz
dexon-solidity-fb7836d87bba0eacb2454d6c50b1209365a89b6d.tar.zst
dexon-solidity-fb7836d87bba0eacb2454d6c50b1209365a89b6d.zip
Merge pull request #897 from Denton-L/remove-standard
BREAKING: Remove standard contracts
Diffstat (limited to 'test/contracts/FixedFeeRegistrar.cpp')
-rw-r--r--test/contracts/FixedFeeRegistrar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/contracts/FixedFeeRegistrar.cpp b/test/contracts/FixedFeeRegistrar.cpp
index 6d79bec6..3acfba62 100644
--- a/test/contracts/FixedFeeRegistrar.cpp
+++ b/test/contracts/FixedFeeRegistrar.cpp
@@ -131,7 +131,7 @@ protected:
if (!s_compiledRegistrar)
{
m_optimize = true;
- m_compiler.reset(false, m_addStandardSources);
+ m_compiler.reset(false);
m_compiler.addSource("", registrarCode);
ETH_TEST_REQUIRE_NO_THROW(m_compiler.compile(m_optimize, m_optimizeRuns), "Compiling contract failed");
s_compiledRegistrar.reset(new bytes(m_compiler.object("FixedFeeRegistrar").bytecode));