diff --git a/ethers-solc/src/compile.rs b/ethers-solc/src/compile.rs index 73246444..eaaa31bd 100644 --- a/ethers-solc/src/compile.rs +++ b/ethers-solc/src/compile.rs @@ -358,6 +358,7 @@ impl Solc { use tokio::io::AsyncWriteExt; let content = serde_json::to_vec(input)?; let mut child = tokio::process::Command::new(&self.solc) + .args(&self.args) .arg("--standard-json") .stdin(Stdio::piped()) .stderr(Stdio::piped())