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 /libsolidity/interface/CompilerStack.h | |
parent | 63395b31af701dee20abcf730b0bd3c660cc48e8 (diff) | |
download | dexon-solidity-b99e4bc68b8bc0d15809e17a6f9489841062fe52.tar.gz dexon-solidity-b99e4bc68b8bc0d15809e17a6f9489841062fe52.tar.zst dexon-solidity-b99e4bc68b8bc0d15809e17a6f9489841062fe52.zip |
Rework functionHashes into methodIdentifiers
Diffstat (limited to 'libsolidity/interface/CompilerStack.h')
-rw-r--r-- | libsolidity/interface/CompilerStack.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libsolidity/interface/CompilerStack.h b/libsolidity/interface/CompilerStack.h index 3250429b..71dbce7e 100644 --- a/libsolidity/interface/CompilerStack.h +++ b/libsolidity/interface/CompilerStack.h @@ -178,7 +178,8 @@ public: /// Can be one of 4 types defined at @c DocumentationType Json::Value const& natspec(std::string const& _contractName, DocumentationType _type) const; - Json::Value functionHashes(ContractDefinition const& _contract); + /// @returns a JSON representing a map of method identifiers (hashes) to function names. + Json::Value methodIdentifiers(std::string const& _contractName) const; std::string const& onChainMetadata(std::string const& _contractName) const; void useMetadataLiteralSources(bool _metadataLiteralSources) { m_metadataLiteralSources = _metadataLiteralSources; } |