starknet 10.6.1 → 10.6.2
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.
- package/CHANGELOG.md +6 -0
- package/dist/index.global.js +4 -4
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6574,9 +6574,9 @@ var RpcChannel = class {
|
|
|
6574
6574
|
if (retries <= 0) {
|
|
6575
6575
|
throw new Error(`waitForTransaction timed-out with retries ${this.retries}`);
|
|
6576
6576
|
}
|
|
6577
|
+
retries -= 1;
|
|
6578
|
+
await wait(retryInterval);
|
|
6577
6579
|
}
|
|
6578
|
-
retries -= 1;
|
|
6579
|
-
await wait(retryInterval);
|
|
6580
6580
|
}
|
|
6581
6581
|
return txReceipt;
|
|
6582
6582
|
}
|
|
@@ -7190,9 +7190,9 @@ var RpcChannel2 = class {
|
|
|
7190
7190
|
if (retries <= 0) {
|
|
7191
7191
|
throw new Error(`waitForTransaction timed-out with retries ${this.retries}`);
|
|
7192
7192
|
}
|
|
7193
|
+
retries -= 1;
|
|
7194
|
+
await wait(retryInterval);
|
|
7193
7195
|
}
|
|
7194
|
-
retries -= 1;
|
|
7195
|
-
await wait(retryInterval);
|
|
7196
7196
|
}
|
|
7197
7197
|
return txReceipt;
|
|
7198
7198
|
}
|