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

chore: make compiled_artifacts public in ProjectCompileOutput struct #2671

Closed
Closed
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
2 changes: 1 addition & 1 deletion ethers-solc/src/compile/output/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub struct ProjectCompileOutput<T: ArtifactOutput = ConfigurableArtifacts> {
/// contains the aggregated `CompilerOutput`
pub(crate) compiler_output: AggregatedCompilerOutput,
/// all artifact files from `output` that were freshly compiled and written
pub(crate) compiled_artifacts: Artifacts<T::Artifact>,
pub compiled_artifacts: Artifacts<T::Artifact>,
/// All artifacts that were read from cache
pub(crate) cached_artifacts: Artifacts<T::Artifact>,
/// errors that should be omitted
Expand Down
Loading