diff options
author | subtly <subtly@users.noreply.github.com> | 2015-02-11 04:49:37 +0800 |
---|---|---|
committer | subtly <subtly@users.noreply.github.com> | 2015-02-11 04:49:37 +0800 |
commit | 8746426ef053db31e81331fc56ada43c3cc3f659 (patch) | |
tree | d4c5b23012c661d3edf75afa98cc2e545aa4d2a9 /SolidityInterface.cpp | |
parent | 412ce7e5e948dc6602fc13037e9910e0f8a92234 (diff) | |
parent | 9a792edb33a95f8034cbb368e94e8ca0f4565415 (diff) | |
download | dexon-solidity-8746426ef053db31e81331fc56ada43c3cc3f659.tar dexon-solidity-8746426ef053db31e81331fc56ada43c3cc3f659.tar.gz dexon-solidity-8746426ef053db31e81331fc56ada43c3cc3f659.tar.bz2 dexon-solidity-8746426ef053db31e81331fc56ada43c3cc3f659.tar.lz dexon-solidity-8746426ef053db31e81331fc56ada43c3cc3f659.tar.xz dexon-solidity-8746426ef053db31e81331fc56ada43c3cc3f659.tar.zst dexon-solidity-8746426ef053db31e81331fc56ada43c3cc3f659.zip |
Merge branch 'develop' into p2p
Diffstat (limited to 'SolidityInterface.cpp')
-rw-r--r-- | SolidityInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SolidityInterface.cpp b/SolidityInterface.cpp index 3b7d26ec..78de2356 100644 --- a/SolidityInterface.cpp +++ b/SolidityInterface.cpp @@ -43,7 +43,7 @@ public: { m_code = _code; BOOST_REQUIRE_NO_THROW(m_compilerStack.parse(_code)); - m_interface = m_compilerStack.getMetadata("", DocumentationType::ABI_SOLIDITY_INTERFACE); + m_interface = m_compilerStack.getMetadata("", DocumentationType::ABISolidityInterface); BOOST_REQUIRE_NO_THROW(m_reCompiler.parse(m_interface)); return m_reCompiler.getContractDefinition(_contractName); } |