From 86e5af29e520fba5a14193b9fd2e4de1641413a6 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Tue, 31 May 2022 22:28:27 +0200 Subject: [PATCH] fix(solc): remove compile_exact restriction (#1329) --- ethers-solc/src/compile/project.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-solc/src/compile/project.rs b/ethers-solc/src/compile/project.rs index 0de0788f..11273f99 100644 --- a/ethers-solc/src/compile/project.rs +++ b/ethers-solc/src/compile/project.rs @@ -480,7 +480,7 @@ fn compile_sequential( let start = Instant::now(); report::solc_spawn(&solc, &version, &input, &actually_dirty); - let output = solc.compile_exact(&input)?; + let output = solc.compile(&input)?; report::solc_success(&solc, &version, &output, &start.elapsed()); tracing::trace!("compiled input, output has error: {}", output.has_error()); tracing::trace!("received compiler output: {:?}", output.contracts.keys());