Skip to content

Commit 7bf3354

Browse files
committed
comment
1 parent 9ff69f1 commit 7bf3354

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ export class TransactionBuilder {
192192
this.transactionInstructions.length - 1
193193
].instructions,
194194
instruction,
195-
this.transactionInstructions.length % JITO_BUNDLE_SIZE === 0
195+
this.transactionInstructions.length % JITO_BUNDLE_SIZE === 0 // This transaction may be the first of a Jito bundle, so we leave room for a Jito tip transfer.
196196
? buildJitoTipInstruction(this.payer, 1)
197197
: ComputeBudgetProgram.setComputeUnitPrice({
198198
microLamports: 1,

0 commit comments

Comments
 (0)