Skip to content

Commit

Permalink
hokus pokus
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg committed Nov 17, 2023
1 parent b71b991 commit 6b8901b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/providers/src/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ use alloy_rpc_types::{
};
use alloy_transport::{BoxTransport, Transport, TransportErrorKind, TransportResult};
use alloy_transport_http::Http;
use async_trait::async_trait;
use auto_impl::auto_impl;
use reqwest::Client;
use serde::{Deserialize, Serialize};
Expand Down Expand Up @@ -38,6 +37,7 @@ pub struct Provider<T: Transport = BoxTransport> {
/// Once the new Provider trait is stable, this trait will be removed.
#[cfg_attr(target_arch = "wasm32", async_trait::async_trait(?Send))]
#[cfg_attr(not(target_arch = "wasm32"), async_trait::async_trait)]
#[auto_impl(&, Arc, Box)]
pub trait TempProvider: Send + Sync {
/// Gets the transaction count of the corresponding address.
async fn get_transaction_count(
Expand Down

0 comments on commit 6b8901b

Please sign in to comment.