diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-06-15 18:35:30 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-06-22 18:13:06 +0800 |
commit | ba7d698ee67181afc92fd90d18487245cb303389 (patch) | |
tree | a68cd72a78b76d25ef6561f5ed84d47ea72352de /solc | |
parent | b99e4bc68b8bc0d15809e17a6f9489841062fe52 (diff) | |
download | dexon-solidity-ba7d698ee67181afc92fd90d18487245cb303389.tar.gz dexon-solidity-ba7d698ee67181afc92fd90d18487245cb303389.tar.zst dexon-solidity-ba7d698ee67181afc92fd90d18487245cb303389.zip |
Make compiler.contractDefinition private
Diffstat (limited to 'solc')
-rw-r--r-- | solc/CommandLineInterface.cpp | 5 |
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); |