diff options
author | chriseth <c@ethdev.com> | 2015-01-09 18:22:59 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-01-09 18:22:59 +0800 |
commit | 42d186fdfca29fc23aff72b97493cdc8e03ed6b1 (patch) | |
tree | 4599ce43eb672644f93ac618c1fab2e0bb600407 /Types.h | |
parent | 23eff4d24a18b6a82565dbf5074c4e1ed313bb9e (diff) | |
parent | a36af5364c82f970fd9503833c04c1b5863e6697 (diff) | |
download | dexon-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |