aboutsummaryrefslogtreecommitdiffstats
path: root/Types.h
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-01-09 00:18:31 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-01-09 00:18:31 +0800
commit184ddca5a108c5f3d026aa372a2af2f63b2694f9 (patch)
tree13dfa78ad1dbaa6fa83e83bf82d5fbdb78288de4 /Types.h
parent68b94275354e5715cea37ccbca18eb2a4b42704e (diff)
downloaddexon-solidity-184ddca5a108c5f3d026aa372a2af2f63b2694f9.tar
dexon-solidity-184ddca5a108c5f3d026aa372a2af2f63b2694f9.tar.gz
dexon-solidity-184ddca5a108c5f3d026aa372a2af2f63b2694f9.tar.bz2
dexon-solidity-184ddca5a108c5f3d026aa372a2af2f63b2694f9.tar.lz
dexon-solidity-184ddca5a108c5f3d026aa372a2af2f63b2694f9.tar.xz
dexon-solidity-184ddca5a108c5f3d026aa372a2af2f63b2694f9.tar.zst
dexon-solidity-184ddca5a108c5f3d026aa372a2af2f63b2694f9.zip
Compiler EVM generation now takes into account for the new function hash
identifier - Changed tests to comply with the new function hash identifier - Changed the function index offset to 4, and made it a constant for easy adjustment in the future
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 0fe685b8..9d34e19a 100644
--- a/Types.h
+++ b/Types.h
@@ -254,7 +254,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;