From 8964497f70d935b88538d9b1c57e46d381b6c0e4 Mon Sep 17 00:00:00 2001 From: Samuel Moelius <35515885+smoelius@users.noreply.github.com> Date: Sun, 13 Apr 2025 08:20:45 -0400 Subject: [PATCH] Bump number of transaction fetch attempts in `call_external` fixture --- fixtures/call_external/tests/call_external.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fixtures/call_external/tests/call_external.ts b/fixtures/call_external/tests/call_external.ts index 899b661..a67a7aa 100644 --- a/fixtures/call_external/tests/call_external.ts +++ b/fixtures/call_external/tests/call_external.ts @@ -19,7 +19,7 @@ describe("call_external", () => { maxSupportedTransactionVersion: 0, commitment: "confirmed", }); - if (txDetails == null && ++nAttempts < 2) { + if (txDetails == null && ++nAttempts < 3) { console.log("Retrying transaction fetch...") } else { break;