From 5b16cd1225e58474c69834b41ec6330b9435c467 Mon Sep 17 00:00:00 2001 From: Pablo Lamela Date: Fri, 17 May 2024 01:37:45 +0200 Subject: [PATCH] Increase polling frequency --- cardano-testnet/src/Testnet/Components/Query.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cardano-testnet/src/Testnet/Components/Query.hs b/cardano-testnet/src/Testnet/Components/Query.hs index d077fcfe001..5787a62bd5e 100644 --- a/cardano-testnet/src/Testnet/Components/Query.hs +++ b/cardano-testnet/src/Testnet/Components/Query.hs @@ -424,5 +424,5 @@ watchEpochStateView epochStateView f (EpochInterval maxWait) = withFrozenCallSta if currentEpoch > timeout then pure Nothing else do - H.threadDelay 100_000 + H.threadDelay 10_000 go (EpochNo timeout)