Skip to content

Commit dbdae73

Browse files
committed
fix: fmt
1 parent e1d96dd commit dbdae73

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/robust_provider/provider.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,10 @@ impl<N: Network> RobustProvider<N> {
337337
let fallback_providers = self.fallback_providers.iter().enumerate().skip(start_index);
338338
for (fallback_idx, provider) in fallback_providers {
339339
if require_pubsub && !Self::supports_pubsub(provider) {
340-
warn!(provider_num = fallback_idx + 1, "Fallback provider doesn't support pubsub, skipping");
340+
warn!(
341+
provider_num = fallback_idx + 1,
342+
"Fallback provider doesn't support pubsub, skipping"
343+
);
341344
continue;
342345
}
343346

0 commit comments

Comments
 (0)