aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/CompilerStack.h
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-08-07 19:00:34 +0800
committerGitHub <noreply@github.com>2018-08-07 19:00:34 +0800
commitc6278fbae1e1dac33ebfad7e8d42e071c9e78914 (patch)
treed6772c27c34253ff8fc249eb1fc18f1ec2b49a4d /libsolidity/interface/CompilerStack.h
parentd0bfe4b2254a9fa30429215fba8cd7e47db7a3b0 (diff)
parent71e26f6adb7d6b28400a6607570bb1e17da24feb (diff)
downloaddexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.tar
dexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.tar.gz
dexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.tar.bz2
dexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.tar.lz
dexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.tar.xz
dexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.tar.zst
dexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.zip
Merge pull request #4701 from ethereum/removeClone
Remove clone feature.
Diffstat (limited to 'libsolidity/interface/CompilerStack.h')
-rw-r--r--libsolidity/interface/CompilerStack.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/libsolidity/interface/CompilerStack.h b/libsolidity/interface/CompilerStack.h
index 7b144660..b7d07ca7 100644
--- a/libsolidity/interface/CompilerStack.h
+++ b/libsolidity/interface/CompilerStack.h
@@ -190,12 +190,6 @@ public:
/// @returns the runtime object for the contract.
eth::LinkerObject const& runtimeObject(std::string const& _contractName) const;
- /// @returns the bytecode of a contract that uses an already deployed contract via DELEGATECALL.
- /// The returned bytes will contain a sequence of 20 bytes of the format "XXX...XXX" which have to
- /// substituted by the actual address. Note that this sequence starts end ends in three X
- /// characters but can contain anything in between.
- eth::LinkerObject const& cloneObject(std::string const& _contractName) const;
-
/// @returns normal contract assembly items
eth::AssemblyItems const* assemblyItems(std::string const& _contractName) const;
@@ -258,7 +252,6 @@ private:
std::shared_ptr<Compiler> compiler;
eth::LinkerObject object; ///< Deployment object (includes the runtime sub-object).
eth::LinkerObject runtimeObject; ///< Runtime object.
- eth::LinkerObject cloneObject; ///< Clone object (deprecated).
std::string metadata; ///< The metadata json that will be hashed into the chain.
mutable std::unique_ptr<Json::Value const> abi;
mutable std::unique_ptr<Json::Value const> userDocumentation;