diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-01-15 00:14:46 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-01-15 00:14:46 +0800 |
commit | 895a2852f47c456579ba6d9b4fa03659ed0a3af1 (patch) | |
tree | 8d365b2af9b1079d62364f7300b3076cd37165ef /CompilerStack.h | |
parent | a78794e8721c8f8f80ec89de2bf8ba158796e39f (diff) | |
download | dexon-solidity-895a2852f47c456579ba6d9b4fa03659ed0a3af1.tar.gz dexon-solidity-895a2852f47c456579ba6d9b4fa03659ed0a3af1.tar.zst dexon-solidity-895a2852f47c456579ba6d9b4fa03659ed0a3af1.zip |
Minor style fixes
Diffstat (limited to 'CompilerStack.h')
-rw-r--r-- | CompilerStack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CompilerStack.h b/CompilerStack.h index 29de69d5..aa55abe5 100644 --- a/CompilerStack.h +++ b/CompilerStack.h @@ -78,9 +78,9 @@ public: /// @returns the assembled bytecode for a contract. bytes const& getBytecode(std::string const& _contractName = "") const; - /// @returns the runtime context's bytecode for a contract. - bytes const& getRuntimeBytecode(std::string const& _contractName = "") const; /// @returns the runtime bytecode for the contract, i.e. the code that is returned by the constructor. + bytes const& getRuntimeBytecode(std::string const& _contractName = "") const; + /// @returns hash of the runtime bytecode for the contract, i.e. the code that is returned by the constructor. dev::h256 getContractCodeHash(std::string const& _contractName = "") const; /// Streams a verbose version of the assembly to @a _outStream. |