From 1fb3fbfef60b4e4dc42ede1d912151f5d727dea7 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Mon, 27 Sep 2021 20:48:18 +0300 Subject: [PATCH] chore: expose solc module --- ethers-core/src/utils/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-core/src/utils/mod.rs b/ethers-core/src/utils/mod.rs index 92d2ea11..0d69d8d2 100644 --- a/ethers-core/src/utils/mod.rs +++ b/ethers-core/src/utils/mod.rs @@ -12,7 +12,7 @@ pub use geth::{Geth, GethInstance}; /// Solidity compiler bindings #[cfg(not(target_arch = "wasm32"))] -mod solc; +pub mod solc; #[cfg(not(target_arch = "wasm32"))] pub use solc::{CompiledContract, Solc};