diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-06-15 18:33:01 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-06-22 18:13:06 +0800 |
commit | b99e4bc68b8bc0d15809e17a6f9489841062fe52 (patch) | |
tree | 7c86c60b992efafa1732d0e99f4f0d5fc7108578 /solc/CommandLineInterface.cpp | |
parent | 63395b31af701dee20abcf730b0bd3c660cc48e8 (diff) | |
download | dexon-solidity-b99e4bc68b8bc0d15809e17a6f9489841062fe52.tar dexon-solidity-b99e4bc68b8bc0d15809e17a6f9489841062fe52.tar.gz dexon-solidity-b99e4bc68b8bc0d15809e17a6f9489841062fe52.tar.bz2 dexon-solidity-b99e4bc68b8bc0d15809e17a6f9489841062fe52.tar.lz dexon-solidity-b99e4bc68b8bc0d15809e17a6f9489841062fe52.tar.xz dexon-solidity-b99e4bc68b8bc0d15809e17a6f9489841062fe52.tar.zst dexon-solidity-b99e4bc68b8bc0d15809e17a6f9489841062fe52.zip |
Rework functionHashes into methodIdentifiers
Diffstat (limited to 'solc/CommandLineInterface.cpp')
-rw-r--r-- | solc/CommandLineInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index e37922c6..b667f0d2 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -889,7 +889,7 @@ void CommandLineInterface::handleCombinedJSON() contractData[g_strSrcMapRuntime] = map ? *map : ""; } if (requests.count(g_strSignatureHashes)) - contractData[g_strSignatureHashes] = m_compiler->functionHashes(m_compiler->contractDefinition(contractName)); + contractData[g_strSignatureHashes] = m_compiler->methodIdentifiers(contractName); if (requests.count(g_strNatspecDev)) contractData[g_strNatspecDev] = dev::jsonCompactPrint(m_compiler->natspec(contractName, DocumentationType::NatspecDev)); if (requests.count(g_strNatspecUser)) |