aboutsummaryrefslogtreecommitdiffstats
path: root/solc/CommandLineInterface.cpp
diff options
context:
space:
mode:
authorEdward Ruchevits <ruchevits@gmail.com>2017-06-14 00:02:57 +0800
committerEdward Ruchevits <ruchevits@gmail.com>2017-06-14 00:03:17 +0800
commit2e816967d315185b930e3460d822f04bff061492 (patch)
tree55d04d99e3d23cbf7451731fa60399e72226a4e5 /solc/CommandLineInterface.cpp
parent6b052249dac2bce9d3a87f21cbde3a6429428fc0 (diff)
downloaddexon-solidity-2e816967d315185b930e3460d822f04bff061492.tar.gz
dexon-solidity-2e816967d315185b930e3460d822f04bff061492.tar.zst
dexon-solidity-2e816967d315185b930e3460d822f04bff061492.zip
Allow including hashes of method signatures in --combined-json output
Diffstat (limited to 'solc/CommandLineInterface.cpp')
-rw-r--r--solc/CommandLineInterface.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp
index cae05b18..4fbd3384 100644
--- a/solc/CommandLineInterface.cpp
+++ b/solc/CommandLineInterface.cpp
@@ -165,6 +165,7 @@ static set<string> const g_combinedJsonArgs
g_strNatspecUser,
g_strNatspecDev,
g_strOpcodes,
+ g_strSignatureHashes,
g_strSrcMap,
g_strSrcMapRuntime
};
@@ -887,6 +888,8 @@ void CommandLineInterface::handleCombinedJSON()
auto map = m_compiler->runtimeSourceMapping(contractName);
contractData[g_strSrcMapRuntime] = map ? *map : "";
}
+ if (requests.count(g_strSignatureHashes))
+ contractData[g_strSignatureHashes] = m_compiler->functionHashes(m_compiler->contractDefinition(contractName));
if (requests.count(g_strNatspecDev))
contractData[g_strNatspecDev] = dev::jsonCompactPrint(m_compiler->natspec(contractName, DocumentationType::NatspecDev));
if (requests.count(g_strNatspecUser))