diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-04-17 21:26:12 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-04-27 19:08:32 +0800 |
commit | 2d62c482fd50a69bb19d2c3e3adca3a66260417f (patch) | |
tree | e3a3903b584289a066263872f00abbf44ff530c5 /AST.cpp | |
parent | fcd3f44fd9b76c659fa0a41beeb00680e8337a5e (diff) | |
download | dexon-solidity-2d62c482fd50a69bb19d2c3e3adca3a66260417f.tar.gz dexon-solidity-2d62c482fd50a69bb19d2c3e3adca3a66260417f.tar.zst dexon-solidity-2d62c482fd50a69bb19d2c3e3adca3a66260417f.zip |
fixed the output of the test
Diffstat (limited to 'AST.cpp')
-rw-r--r-- | AST.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -124,6 +124,12 @@ FunctionDefinition const* ContractDefinition::getConstructor() const return nullptr; } +FixedHash<4> ContractDefinition::getConstructorsInterface() const +{ + return FixedHash<4>(dev::sha3(getConstructor()->externalSignature())); + //return hash; +} + FunctionDefinition const* ContractDefinition::getFallbackFunction() const { for (ContractDefinition const* contract: getLinearizedBaseContracts()) |