@sentio/runtime 3.9.0-rc.6 → 3.9.0-rc.8
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/lib/{chunk-4ZC4G6EI.js → chunk-P4RGL4TZ.js} +4 -2
- package/lib/{chunk-4ZC4G6EI.js.map → chunk-P4RGL4TZ.js.map} +1 -1
- package/lib/index.js +1 -1
- package/lib/processor-runner.js +1044 -1220
- package/lib/processor-runner.js.map +1 -1
- package/package.json +2 -2
- package/src/db-context.ts +4 -2
- package/src/logger.ts +5 -5
- package/src/processor-runner.ts +1 -1
- package/src/service-v3.ts +1 -1
- package/src/service.ts +1 -1
|
@@ -38485,7 +38485,9 @@ var AbstractStoreContext = class {
|
|
|
38485
38485
|
const promises = [promise];
|
|
38486
38486
|
let timer;
|
|
38487
38487
|
if (timeoutSecs) {
|
|
38488
|
-
const timeoutPromise = new Promise(
|
|
38488
|
+
const timeoutPromise = new Promise(
|
|
38489
|
+
(_r, rej) => timer = setTimeout(rej, timeoutSecs * 1e3, timeoutError)
|
|
38490
|
+
);
|
|
38489
38491
|
promises.push(timeoutPromise);
|
|
38490
38492
|
}
|
|
38491
38493
|
this.doSend({
|
|
@@ -60356,4 +60358,4 @@ long/umd/index.js:
|
|
|
60356
60358
|
@noble/curves/esm/secp256k1.js:
|
|
60357
60359
|
(*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
|
|
60358
60360
|
*/
|
|
60359
|
-
//# sourceMappingURL=chunk-
|
|
60361
|
+
//# sourceMappingURL=chunk-P4RGL4TZ.js.map
|