From f2100a630d5ddd4794816c961f75811a72e93deb Mon Sep 17 00:00:00 2001 From: hukla <129692708+huklaa@users.noreply.github.com> Date: Fri, 21 Aug 2026 16:43:54 +0300 Subject: [PATCH] chore(test): clarify concurrent mempool checks --- crates/test/checks/src/mempool.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/test/checks/src/mempool.rs b/crates/test/checks/src/mempool.rs index 90695ddf..bac6d95b 100644 --- a/crates/test/checks/src/mempool.rs +++ b/crates/test/checks/src/mempool.rs @@ -63,8 +63,8 @@ async fn check_mempool_with_providers(providers: &[(String, P)]) - } }); - // TODO: might want to make this parallel using tokio if the number of nodes to - // check is large. + // Poll all providers concurrently; each RPC request is independently bounded + // by REQUEST_TIMEOUT on the shared reqwest client. let results = join_all(futures).await; let checks = results