Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

fix(ethers-solc/ConfigurableArtifacts): output methodIdentifiers by default #1266

Merged
merged 1 commit into from
May 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions ethers-solc/src/artifact_output/configurable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ impl<'a> From<&'a ConfigurableContractArtifact> for CompactContractBytecodeCow<'
/// {
/// "abi": [],
/// "bytecode": {...},
/// "deployedBytecode": {...}
/// "deployedBytecode": {...},
/// "methodIdentifiers": {...},
/// // additional values
/// }
/// ```
Expand Down Expand Up @@ -290,13 +291,11 @@ impl ArtifactOutput for ConfigurableArtifacts {

artifact_bytecode = bytecode.map(Into::into);
artifact_deployed_bytecode = deployed_bytecode.map(Into::into);
artifact_method_identifiers = Some(method_identifiers);

if self.additional_values.gas_estimates {
artifact_gas_estimates = gas_estimates;
}
if self.additional_values.method_identifiers {
artifact_method_identifiers = Some(method_identifiers);
}
if self.additional_values.assembly {
artifact_assembly = assembly;
}
Expand Down