Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
chore: makes etherscan::Result pub(crate) (#638)
Browse files Browse the repository at this point in the history
  • Loading branch information
gakonst authored Dec 2, 2021
1 parent 9214bac commit 24f9bd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethers-etherscan/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit 24f9bd0

Please sign in to comment.