We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1d96dd commit dbdae73Copy full SHA for dbdae73
src/robust_provider/provider.rs
@@ -337,7 +337,10 @@ impl<N: Network> RobustProvider<N> {
337
let fallback_providers = self.fallback_providers.iter().enumerate().skip(start_index);
338
for (fallback_idx, provider) in fallback_providers {
339
if require_pubsub && !Self::supports_pubsub(provider) {
340
- warn!(provider_num = fallback_idx + 1, "Fallback provider doesn't support pubsub, skipping");
+ warn!(
341
+ provider_num = fallback_idx + 1,
342
+ "Fallback provider doesn't support pubsub, skipping"
343
+ );
344
continue;
345
}
346
0 commit comments