diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-01-10 00:02:39 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-01-12 22:38:58 +0800 |
commit | c5d14ce933e3f1d4814c73cbb6d7fe7062caaa06 (patch) | |
tree | 2505714e9397a128856b6f9793a63f2df62af7d7 /CompilerStack.cpp | |
parent | 24a2335c01fa2d0baeda97b795a9bf8b05b6529d (diff) | |
download | dexon-solidity-c5d14ce933e3f1d4814c73cbb6d7fe7062caaa06.tar dexon-solidity-c5d14ce933e3f1d4814c73cbb6d7fe7062caaa06.tar.gz dexon-solidity-c5d14ce933e3f1d4814c73cbb6d7fe7062caaa06.tar.bz2 dexon-solidity-c5d14ce933e3f1d4814c73cbb6d7fe7062caaa06.tar.lz dexon-solidity-c5d14ce933e3f1d4814c73cbb6d7fe7062caaa06.tar.xz dexon-solidity-c5d14ce933e3f1d4814c73cbb6d7fe7062caaa06.tar.zst dexon-solidity-c5d14ce933e3f1d4814c73cbb6d7fe7062caaa06.zip |
Work in prgress for creating natspec in alethzero at contract creation
Diffstat (limited to 'CompilerStack.cpp')
-rw-r--r-- | CompilerStack.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/CompilerStack.cpp b/CompilerStack.cpp index 174f9cd2..547e5fe2 100644 --- a/CompilerStack.cpp +++ b/CompilerStack.cpp @@ -200,6 +200,13 @@ bytes CompilerStack::staticCompile(std::string const& _sourceCode, bool _optimiz return stack.compile(_sourceCode, _optimize); } +dev::h256 CompilerStack::getContractCodeHash(std::string const& _contractName) +{ + //LTODO + (void) _contractName; + return dev::h256(""); +} + void CompilerStack::reset(bool _keepSources) { m_parseSuccessful = false; |