From 24f9bd0f4f94eecb173e39e896eeed1040a0948c Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Wed, 1 Dec 2021 16:54:16 -0800 Subject: [PATCH] chore: makes etherscan::Result pub(crate) (#638) --- ethers-etherscan/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-etherscan/src/lib.rs b/ethers-etherscan/src/lib.rs index 402fa35c..400bcf82 100644 --- a/ethers-etherscan/src/lib.rs +++ b/ethers-etherscan/src/lib.rs @@ -13,7 +13,7 @@ pub mod errors; pub mod gas; pub mod transaction; -pub type Result = std::result::Result; +pub(crate) type Result = std::result::Result; /// The Etherscan.io API client. #[derive(Clone, Debug)]