aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/CompilerStack.h
diff options
context:
space:
mode:
authorYoichi Hirai <i@yoichihirai.com>2017-07-19 17:43:19 +0800
committerGitHub <noreply@github.com>2017-07-19 17:43:19 +0800
commit2a46e1b0e23b57f9333d4bf2fe0f402795581d61 (patch)
treed611ac556b46c9baa2dd4d85148cff61d29400a2 /libsolidity/interface/CompilerStack.h
parentb2879c18768f25d46595be5ca0d41b3c69835223 (diff)
parent6d8929a71aa5cecb6f4a1aa15a2a5db640a62631 (diff)
downloaddexon-solidity-2a46e1b0e23b57f9333d4bf2fe0f402795581d61.tar.gz
dexon-solidity-2a46e1b0e23b57f9333d4bf2fe0f402795581d61.tar.zst
dexon-solidity-2a46e1b0e23b57f9333d4bf2fe0f402795581d61.zip
Merge pull request #2589 from ethereum/rename-onchainmetadata
Rename onChainMetadata to metadata
Diffstat (limited to 'libsolidity/interface/CompilerStack.h')
-rw-r--r--libsolidity/interface/CompilerStack.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libsolidity/interface/CompilerStack.h b/libsolidity/interface/CompilerStack.h
index 03a1b806..6b8fb538 100644
--- a/libsolidity/interface/CompilerStack.h
+++ b/libsolidity/interface/CompilerStack.h
@@ -183,7 +183,7 @@ public:
/// @returns a JSON representing a map of method identifiers (hashes) to function names.
Json::Value methodIdentifiers(std::string const& _contractName) const;
- std::string const& onChainMetadata(std::string const& _contractName) const;
+ std::string const& metadata(std::string const& _contractName) const;
void useMetadataLiteralSources(bool _metadataLiteralSources) { m_metadataLiteralSources = _metadataLiteralSources; }
/// @returns a JSON representing the estimated gas usage for contract creation, internal and external functions
@@ -223,7 +223,7 @@ private:
eth::LinkerObject object;
eth::LinkerObject runtimeObject;
eth::LinkerObject cloneObject;
- std::string onChainMetadata; ///< The metadata json that will be hashed into the chain.
+ 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;
mutable std::unique_ptr<Json::Value const> devDocumentation;
@@ -255,7 +255,7 @@ private:
/// does not exist.
ContractDefinition const& contractDefinition(std::string const& _contractName) const;
- std::string createOnChainMetadata(Contract const& _contract) const;
+ std::string createMetadata(Contract const& _contract) const;
std::string computeSourceMapping(eth::AssemblyItems const& _items) const;
Json::Value const& contractABI(Contract const&) const;
Json::Value const& natspec(Contract const&, DocumentationType _type) const;