ethers_providers_rs/
error.rs1#[derive(Debug, thiserror::Error)]
2pub enum ProviderError {
3 #[error("Parse block tag error, {0}")]
4 BlockTag(serde_json::Error),
5
6 #[error("Parse number error")]
7 Number,
8
9 #[error("Parse syncing status err, should always return false if not syncing")]
10 Syncing,
11}