aboutsummaryrefslogtreecommitdiffstats
path: root/AST.cpp
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-04-22 23:05:35 +0800
committerLiana Husikyan <liana@ethdev.com>2015-04-27 19:08:32 +0800
commit648ce852561a1a28bebf3be1a64480aee560bf7a (patch)
tree0bae48d386b4be3299a9708bc2306f5d12ff70fd /AST.cpp
parentf0cac2f6a928c1a6765052e0fd07cab0b936b23f (diff)
downloaddexon-solidity-648ce852561a1a28bebf3be1a64480aee560bf7a.tar.gz
dexon-solidity-648ce852561a1a28bebf3be1a64480aee560bf7a.tar.zst
dexon-solidity-648ce852561a1a28bebf3be1a64480aee560bf7a.zip
removed an unnecessary function
Diffstat (limited to 'AST.cpp')
-rw-r--r--AST.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/AST.cpp b/AST.cpp
index 367c88a2..59a7b61c 100644
--- a/AST.cpp
+++ b/AST.cpp
@@ -124,11 +124,6 @@ FunctionDefinition const* ContractDefinition::getConstructor() const
return nullptr;
}
-FixedHash<4> ContractDefinition::getConstructorsInterface() const
-{
- return FixedHash<4>(dev::sha3(getConstructor()->externalSignature()));
-}
-
FunctionDefinition const* ContractDefinition::getFallbackFunction() const
{
for (ContractDefinition const* contract: getLinearizedBaseContracts())