@haven-fi/solauto-sdk 1.0.475 → 1.0.476
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.
@@ -255,7 +255,7 @@ class TransactionsManager {
|
|
255
255
|
}
|
256
256
|
async updateLut(tx, newLut) {
|
257
257
|
const updateLutTxName = `${newLut ? "create" : "update"} lookup table`;
|
258
|
-
await (0, generalUtils_1.retryWithExponentialBackoff)(async (attemptNum, prevError) => await this.sendTransaction(tx, updateLutTxName, attemptNum, this.getUpdatedPriorityFeeSetting(prevError, attemptNum), "skip-simulation"),
|
258
|
+
await (0, generalUtils_1.retryWithExponentialBackoff)(async (attemptNum, prevError) => await this.sendTransaction(tx, updateLutTxName, attemptNum, this.getUpdatedPriorityFeeSetting(prevError, attemptNum), "skip-simulation"), this.signableRetries, 150, this.errorsToThrow);
|
259
259
|
}
|
260
260
|
async clientSend(transactions) {
|
261
261
|
const items = [...transactions];
|
package/package.json
CHANGED