From c3dec4a798e34940f66d924a4eb2c0a54dd26959 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Mon, 25 Oct 2021 15:40:29 +0300 Subject: [PATCH] chore(etherscan): expose modules --- ethers-etherscan/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ethers-etherscan/src/lib.rs b/ethers-etherscan/src/lib.rs index 98aa8da4..f8b4fc83 100644 --- a/ethers-etherscan/src/lib.rs +++ b/ethers-etherscan/src/lib.rs @@ -1,7 +1,7 @@ //! Bindings for [etherscan.io web api](https://docs.etherscan.io/) -mod contract; -mod errors; +pub mod contract; +pub mod errors; mod transaction; use errors::EtherscanError;