From 299329d8f70910cc7a27c01e3b5102e4eb20f87a Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Sat, 28 May 2022 18:01:28 +0200 Subject: [PATCH] chore: remove redundant call (#1320) --- 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 f25f7e7e..0de0788f 100644 --- a/ethers-solc/src/compile/project.rs +++ b/ethers-solc/src/compile/project.rs @@ -465,7 +465,7 @@ fn compile_sequential( continue } let input = input - .settings(opt_settings.clone().with_base_path(&paths.root)) + .settings(opt_settings.clone()) .normalize_evm_version(&version) .with_remappings(paths.remappings.clone()) .with_base_path(&paths.root)