fix(solc): remove compile_exact restriction (#1329)

This commit is contained in:
Matthias Seitz 2022-05-31 22:28:27 +02:00 committed by GitHub
parent a41ae901e5
commit 86e5af29e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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());