Skip to content

Commit

Permalink
fix: set max retries
Browse files Browse the repository at this point in the history
  • Loading branch information
mindrunner committed Mar 20, 2024
1 parent e473882 commit 4c634ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/fleet/refill-fleet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const refillFleet = async (player: PublicKey, fleetUnit: ShipStakingInfo,

transaction.sign([keyPair, keyPair])

const txid = await connection.sendTransaction(transaction)
const txid = await connection.sendTransaction(transaction, { maxRetries: 10 })

logger.info(`https://solscan.io/tx/${txid}`)

Expand Down

0 comments on commit 4c634ba

Please sign in to comment.