From a50ee2ed4643e5d6d015af591fc7685a2bec4fa6 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Tue, 16 Nov 2021 19:43:38 +0100 Subject: [PATCH] chore: don't look for remappings on hardhat (#585) --- ethers-solc/src/config.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/ethers-solc/src/config.rs b/ethers-solc/src/config.rs index d42e9c33..c58998f2 100644 --- a/ethers-solc/src/config.rs +++ b/ethers-solc/src/config.rs @@ -81,7 +81,6 @@ impl PathStyle { .sources(root.join("contracts")) .artifacts(root.join("artifacts")) .lib(root.join("node_modules")) - .remappings(Remapping::find_many(&root.join("node_modules"))?) .root(root) .build()?, })