aboutsummaryrefslogtreecommitdiffstats
path: root/SolidityInterface.cpp
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-02-09 21:12:36 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-02-09 21:12:36 +0800
commit190be6c5f50f3b3f0a2f70c77457ac4917bc1636 (patch)
tree09250b4ed4f968f1f61af41da177693d9427bd84 /SolidityInterface.cpp
parent08e38cfa49848d65a153386a52c00bbd0dfa3e68 (diff)
downloaddexon-solidity-190be6c5f50f3b3f0a2f70c77457ac4917bc1636.tar.gz
dexon-solidity-190be6c5f50f3b3f0a2f70c77457ac4917bc1636.tar.zst
dexon-solidity-190be6c5f50f3b3f0a2f70c77457ac4917bc1636.zip
Styling in Natspec Enums
Diffstat (limited to 'SolidityInterface.cpp')
-rw-r--r--SolidityInterface.cpp2
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);
}