Skip to content

Commit cc16040

Browse files
authored
fix(proposer server) (#2193)
* remove min slot check * Revert "fix: use higher commitment for blockhash to remove 'Minimum context slot has not been reached' errors (#2170)" This reverts commit 00859ba. * version
1 parent 8080789 commit cc16040

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

target_chains/solana/sdk/js/solana_utils/src/transaction.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ export class TransactionBuilder {
227227
args: PriorityFeeConfig
228228
): Promise<{ tx: VersionedTransaction; signers: Signer[] }[]> {
229229
const blockhash = (
230-
await this.connection.getLatestBlockhash({ commitment: "finalized" })
230+
await this.connection.getLatestBlockhash({ commitment: "confirmed" })
231231
).blockhash;
232232

233233
const jitoBundleSize =
@@ -512,7 +512,6 @@ export async function sendTransactions(
512512
// Set this manually so that the default is skipped
513513
maxRetries: 0,
514514
preflightCommitment: "confirmed",
515-
minContextSlot: blockhashResult.context.slot,
516515
});
517516
}
518517
if (confirmedTx?.err) {

0 commit comments

Comments
 (0)