diff options
author | debris <marek.kotewicz@gmail.com> | 2015-02-11 23:24:37 +0800 |
---|---|---|
committer | debris <marek.kotewicz@gmail.com> | 2015-02-11 23:24:37 +0800 |
commit | 396649409eb6ac3a4aad5516f692e6beb31c69b6 (patch) | |
tree | 239d24ebef6bc93a25dfeb9bf97e73ada687c9bf /SolidityABIJSON.cpp | |
parent | 5ab36afaed2372278904b838ba10e3c6d87d1c75 (diff) | |
parent | 9a792edb33a95f8034cbb368e94e8ca0f4565415 (diff) | |
download | dexon-solidity-396649409eb6ac3a4aad5516f692e6beb31c69b6.tar dexon-solidity-396649409eb6ac3a4aad5516f692e6beb31c69b6.tar.gz dexon-solidity-396649409eb6ac3a4aad5516f692e6beb31c69b6.tar.bz2 dexon-solidity-396649409eb6ac3a4aad5516f692e6beb31c69b6.tar.lz dexon-solidity-396649409eb6ac3a4aad5516f692e6beb31c69b6.tar.xz dexon-solidity-396649409eb6ac3a4aad5516f692e6beb31c69b6.tar.zst dexon-solidity-396649409eb6ac3a4aad5516f692e6beb31c69b6.zip |
Merge branch 'develop' into jsoncpp_path
Diffstat (limited to 'SolidityABIJSON.cpp')
-rw-r--r-- | SolidityABIJSON.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SolidityABIJSON.cpp b/SolidityABIJSON.cpp index 9cb7c944..10873b5a 100644 --- a/SolidityABIJSON.cpp +++ b/SolidityABIJSON.cpp @@ -48,7 +48,7 @@ public: auto msg = std::string("Parsing contract failed with: ") + boost::diagnostic_information(_e); BOOST_FAIL(msg); } - std::string generatedInterfaceString = m_compilerStack.getMetadata("", DocumentationType::ABI_INTERFACE); + std::string generatedInterfaceString = m_compilerStack.getMetadata("", DocumentationType::ABIInterface); Json::Value generatedInterface; m_reader.parse(generatedInterfaceString, generatedInterface); Json::Value expectedInterface; |