diff --git a/examples/advanced/examples/reth_db_provider.rs b/examples/advanced/examples/reth_db_provider.rs index 423ac41..aac7afb 100644 --- a/examples/advanced/examples/reth_db_provider.rs +++ b/examples/advanced/examples/reth_db_provider.rs @@ -168,7 +168,7 @@ where let best = provider.best_block_number().map_err(TransportErrorKind::custom); - ProviderCall::::ready(best) + ProviderCall::ready(best) } /// Override the `get_transaction_count` method to fetch the transaction count of an address. @@ -184,7 +184,7 @@ where let nonce = maybe_acc.map(|acc| acc.nonce).unwrap_or_default(); - ProviderCall::, U64, u64>::ready(Ok(nonce)) + ProviderCall::ready(Ok(nonce)) }) } }