From 106e43833ec7d77deeb609f40cb513b69908fbff Mon Sep 17 00:00:00 2001 From: Guillermo Bescos Date: Thu, 17 Oct 2024 18:48:18 +0100 Subject: [PATCH] update max transaction per batch --- utils/sendTransactions.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/utils/sendTransactions.tsx b/utils/sendTransactions.tsx index 6f632bf2dc..cc37cf393b 100644 --- a/utils/sendTransactions.tsx +++ b/utils/sendTransactions.tsx @@ -115,12 +115,7 @@ export const sendTransactionsV3 = async ({ } const cfg = { - maxTxesInBatch: - transactionInstructionsWithFee.filter( - (x) => x.sequenceType === SequenceType.Sequential - ).length > 0 - ? 20 - : 30, + maxTxesInBatch: 1, autoRetry: false, maxRetries: 5, retried: 0,