@haven-fi/solauto-sdk 1.0.309 → 1.0.310
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -170,7 +170,7 @@ async function getComputeUnitPriceEstimate(umi, tx, prioritySetting) {
|
|
170
170
|
}
|
171
171
|
return feeEstimate;
|
172
172
|
}
|
173
|
-
async function spamSendTransactionUntilConfirmed(connection, transaction, blockhash, spamInterval =
|
173
|
+
async function spamSendTransactionUntilConfirmed(connection, transaction, blockhash, spamInterval = 1500) {
|
174
174
|
let transactionSignature = null;
|
175
175
|
const sendTx = async () => {
|
176
176
|
try {
|
package/package.json
CHANGED
package/src/utils/solanaUtils.ts
CHANGED
@@ -317,7 +317,7 @@ async function spamSendTransactionUntilConfirmed(
|
|
317
317
|
connection: Connection,
|
318
318
|
transaction: Transaction | VersionedTransaction,
|
319
319
|
blockhash: BlockhashWithExpiryBlockHeight,
|
320
|
-
spamInterval: number =
|
320
|
+
spamInterval: number = 1500
|
321
321
|
): Promise<string> {
|
322
322
|
let transactionSignature: string | null = null;
|
323
323
|
|