aboutsummaryrefslogtreecommitdiffstats
path: root/InterfaceHandler.cpp
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-03-24 18:11:27 +0800
committerLiana Husikyan <liana@ethdev.com>2015-03-25 20:59:46 +0800
commit9986b072ad471908df4402ef860e58e331035948 (patch)
tree6bf7625fdbfe4f76e655027bdb421f084f6a58df /InterfaceHandler.cpp
parent701b34fbeb1bd08445aad55f82672d35343f5a44 (diff)
downloaddexon-solidity-9986b072ad471908df4402ef860e58e331035948.tar.gz
dexon-solidity-9986b072ad471908df4402ef860e58e331035948.tar.zst
dexon-solidity-9986b072ad471908df4402ef860e58e331035948.zip
renamed externalTypes to externalSignature
Diffstat (limited to 'InterfaceHandler.cpp')
-rw-r--r--InterfaceHandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/InterfaceHandler.cpp b/InterfaceHandler.cpp
index e09e55cb..2f35a96f 100644
--- a/InterfaceHandler.cpp
+++ b/InterfaceHandler.cpp
@@ -129,7 +129,7 @@ std::unique_ptr<std::string> InterfaceHandler::getUserDocumentation(ContractDefi
if (!m_notice.empty())
{// since @notice is the only user tag if missing function should not appear
user["notice"] = Json::Value(m_notice);
- methods[it.second->externalTypes()] = user;
+ methods[it.second->externalSignature()] = user;
}
}
}
@@ -185,7 +185,7 @@ std::unique_ptr<std::string> InterfaceHandler::getDevDocumentation(ContractDefin
method["return"] = m_return;
if (!method.empty()) // add the function, only if we have any documentation to add
- methods[it.second->externalTypes()] = method;
+ methods[it.second->externalSignature()] = method;
}
}
doc["methods"] = methods;