Skip to content

Commit

Permalink
??????????
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg committed Nov 17, 2023
1 parent 210b652 commit b71b991
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/providers/src/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ impl<T: Transport + Clone + Send + Sync> Provider<T> {
// In the future, this will be replaced by a Provider trait,
// but as the interface is not stable yet, we define the bindings ourselves
// until we can use the trait and the client abstraction that will use it.
#[async_trait]
#[cfg_attr(target_arch = "wasm32", async_trait::async_trait(?Send))]
#[cfg_attr(not(target_arch = "wasm32"), async_trait::async_trait)]
impl<T: Transport + Clone + Send + Sync> TempProvider for Provider<T> {
/// Gets the transaction count of the corresponding address.
async fn get_transaction_count(
Expand Down

0 comments on commit b71b991

Please sign in to comment.