aboutsummaryrefslogtreecommitdiffstats
path: root/Types.h
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2015-01-09 18:22:59 +0800
committerchriseth <c@ethdev.com>2015-01-09 18:22:59 +0800
commit42d186fdfca29fc23aff72b97493cdc8e03ed6b1 (patch)
tree4599ce43eb672644f93ac618c1fab2e0bb600407 /Types.h
parent23eff4d24a18b6a82565dbf5074c4e1ed313bb9e (diff)
parenta36af5364c82f970fd9503833c04c1b5863e6697 (diff)
downloaddexon-solidity-42d186fdfca29fc23aff72b97493cdc8e03ed6b1.tar.gz
dexon-solidity-42d186fdfca29fc23aff72b97493cdc8e03ed6b1.tar.zst
dexon-solidity-42d186fdfca29fc23aff72b97493cdc8e03ed6b1.zip
Merge pull request #754 from LefterisJP/sol_abiFunctionHash
Calculation of ABI Function Identifier Hash
Diffstat (limited to 'Types.h')
-rw-r--r--Types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Types.h b/Types.h
index b25d5d89..e50cbc0a 100644
--- a/Types.h
+++ b/Types.h
@@ -267,7 +267,7 @@ public:
/// is not used, as this type cannot be the type of a variable or expression.
std::shared_ptr<FunctionType const> const& getConstructorType() const;
- unsigned getFunctionIndex(std::string const& _functionName) const;
+ u256 getFunctionIdentifier(std::string const& _functionName) const;
private:
ContractDefinition const& m_contract;