diff --git a/src/experimental-bots/entrypoint.ts b/src/experimental-bots/entrypoint.ts index 82592587..511ef750 100644 --- a/src/experimental-bots/entrypoint.ts +++ b/src/experimental-bots/entrypoint.ts @@ -182,6 +182,7 @@ const runBot = async () => { confirmationStrategy: ConfirmationStrategy.Polling, additionalConnections, trackTxLandRate: config.global.trackTxLandRate, + throwOnTimeoutError: false, }); } else if (txSenderType === 'while-valid') { txSender = new WhileValidTxSender({ @@ -207,6 +208,7 @@ const runBot = async () => { additionalConnections, trackTxLandRate: config.global.trackTxLandRate, confirmationStrategy, + throwOnTimeoutError: false, }); } diff --git a/src/index.ts b/src/index.ts index 7fff67b7..ccd053eb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -343,6 +343,7 @@ const runBot = async () => { confirmationStrategy, additionalConnections, trackTxLandRate: config.global.trackTxLandRate, + throwOnTimeoutError: false, }); } else if (txSenderType === 'while-valid') { txSender = new WhileValidTxSender({ @@ -369,6 +370,7 @@ const runBot = async () => { skipConfirmation, additionalConnections, trackTxLandRate: config.global.trackTxLandRate, + throwOnTimeoutError: false, }); }