aboutsummaryrefslogtreecommitdiffstats
path: root/solc/CommandLineInterface.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-06-15 18:35:30 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-06-22 18:13:06 +0800
commitba7d698ee67181afc92fd90d18487245cb303389 (patch)
treea68cd72a78b76d25ef6561f5ed84d47ea72352de /solc/CommandLineInterface.cpp
parentb99e4bc68b8bc0d15809e17a6f9489841062fe52 (diff)
downloaddexon-solidity-ba7d698ee67181afc92fd90d18487245cb303389.tar
dexon-solidity-ba7d698ee67181afc92fd90d18487245cb303389.tar.gz
dexon-solidity-ba7d698ee67181afc92fd90d18487245cb303389.tar.bz2
dexon-solidity-ba7d698ee67181afc92fd90d18487245cb303389.tar.lz
dexon-solidity-ba7d698ee67181afc92fd90d18487245cb303389.tar.xz
dexon-solidity-ba7d698ee67181afc92fd90d18487245cb303389.tar.zst
dexon-solidity-ba7d698ee67181afc92fd90d18487245cb303389.zip
Make compiler.contractDefinition private
Diffstat (limited to 'solc/CommandLineInterface.cpp')
-rw-r--r--solc/CommandLineInterface.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp
index b667f0d2..0dbedd3c 100644
--- a/solc/CommandLineInterface.cpp
+++ b/solc/CommandLineInterface.cpp
@@ -281,9 +281,10 @@ void CommandLineInterface::handleSignatureHashes(string const& _contract)
if (!m_args.count(g_argSignatureHashes))
return;
+ Json::Value methodIdentifiers = m_compiler->methodIdentifiers(_contract);
string out;
- for (auto const& it: m_compiler->contractDefinition(_contract).interfaceFunctions())
- out += toHex(it.first.ref()) + ": " + it.second->externalSignature() + "\n";
+ for (auto const& name: methodIdentifiers.getMemberNames())
+ out += methodIdentifiers[name].asString() + ": " + name + "\n";
if (m_args.count(g_argOutputDir))
createFile(m_compiler->filesystemFriendlyName(_contract) + ".signatures", out);