Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions target_chains/solana/sdk/js/solana_utils/src/transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export class TransactionBuilder {
args: PriorityFeeConfig
): Promise<{ tx: VersionedTransaction; signers: Signer[] }[]> {
const blockhash = (
await this.connection.getLatestBlockhash({ commitment: "finalized" })
await this.connection.getLatestBlockhash({ commitment: "confirmed" })
).blockhash;

const jitoBundleSize =
Expand Down Expand Up @@ -512,7 +512,6 @@ export async function sendTransactions(
// Set this manually so that the default is skipped
maxRetries: 0,
preflightCommitment: "confirmed",
minContextSlot: blockhashResult.context.slot,
});
}
if (confirmedTx?.err) {
Expand Down
Loading