diff options
author | chriseth <chris@ethereum.org> | 2017-06-15 16:10:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-15 16:10:18 +0800 |
commit | 9084d48750afeed128e4d1b7cfe5e836d773d3f3 (patch) | |
tree | 83e7a9cc3375f0406bd6152e2963243c33849439 /solc/CommandLineInterface.cpp | |
parent | 3cb71ac51624377174029e244b3cef950dedbfe8 (diff) | |
parent | 5f7bca94e5174738aea294c51f4bea2f8b450d0d (diff) | |
download | dexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.tar dexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.tar.gz dexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.tar.bz2 dexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.tar.lz dexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.tar.xz dexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.tar.zst dexon-solidity-9084d48750afeed128e4d1b7cfe5e836d773d3f3.zip |
Merge pull request #2382 from ruchevits/combined-json-hashes
Allow including hashes of method signatures in --combined-json output
Diffstat (limited to 'solc/CommandLineInterface.cpp')
-rw-r--r-- | solc/CommandLineInterface.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index 58c8bf73..e37922c6 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)) |