fix: default preflight commitment to confirmation commitment
This commit is contained in:
@@ -19,9 +19,14 @@ export async function sendAndConfirmRawTransaction(
|
||||
rawTransaction: Buffer,
|
||||
options?: ConfirmOptions,
|
||||
): Promise<TransactionSignature> {
|
||||
const sendOptions = options && {
|
||||
skipPreflight: options.skipPreflight,
|
||||
preflightCommitment: options.preflightCommitment || options.commitment,
|
||||
};
|
||||
|
||||
const signature = await connection.sendRawTransaction(
|
||||
rawTransaction,
|
||||
options,
|
||||
sendOptions,
|
||||
);
|
||||
|
||||
const status = (
|
||||
|
@@ -23,10 +23,15 @@ export async function sendAndConfirmTransaction(
|
||||
signers: Array<Account>,
|
||||
options?: ConfirmOptions,
|
||||
): Promise<TransactionSignature> {
|
||||
const sendOptions = options && {
|
||||
skipPreflight: options.skipPreflight,
|
||||
preflightCommitment: options.preflightCommitment || options.commitment,
|
||||
};
|
||||
|
||||
const signature = await connection.sendTransaction(
|
||||
transaction,
|
||||
signers,
|
||||
options,
|
||||
sendOptions,
|
||||
);
|
||||
|
||||
const status = (
|
||||
|
Reference in New Issue
Block a user