Skip to content

Commit

Permalink
fix(blockchain-link): adjust solana send tx configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
martykan committed Dec 2, 2024
1 parent e1bf3ac commit 16cbfef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/blockchain-link/src/workers/solana/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,7 @@ const pushTransaction = async (request: Request<MessageTypes.PushTransaction>) =
const sendAndConfirmTransaction = sendAndConfirmTransactionFactory(api);
await sendAndConfirmTransaction(transactionWithBlockhashLifetime, {
commitment: 'confirmed',
maxRetries: BigInt(0),
skipPreflight: true,
skipPreflight: false,
});

return {
Expand Down

0 comments on commit 16cbfef

Please sign in to comment.