Skip to content

Commit

Permalink
fix(ethers-solc/ConfigurableArtifacts): output methodIdentifiers by d…
Browse files Browse the repository at this point in the history
…efault

Related foundry-rs/foundry#1497
  • Loading branch information
meetmangukiya committed May 15, 2022
1 parent eb94e53 commit 28d1a04
Showing 1 changed file with 3 additions and 4 deletions.
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

0 comments on commit 28d1a04

Please sign in to comment.