chore: makes etherscan::Result pub(crate) (#638)

This commit is contained in:
Georgios Konstantopoulos 2021-12-01 16:54:16 -08:00 committed by GitHub
parent 9214bacc03
commit 24f9bd0f4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ pub mod errors;
pub mod gas;
pub mod transaction;
pub type Result<T> = std::result::Result<T, EtherscanError>;
pub(crate) type Result<T> = std::result::Result<T, EtherscanError>;
/// The Etherscan.io API client.
#[derive(Clone, Debug)]