@sentio/runtime 3.9.0-rc.7 → 3.9.0-rc.9
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-VNWNJ423.js} +8 -3
- package/lib/{chunk-4ZC4G6EI.js.map → chunk-VNWNJ423.js.map} +1 -1
- package/lib/index.d.ts +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/full-service.ts +1 -1
- package/src/logger.ts +5 -5
- package/src/processor-runner.ts +1 -1
- package/src/provider.ts +1 -1
- package/src/service-v3.ts +1 -1
- package/src/service.ts +1 -1
- package/src/utils.ts +5 -2
|
@@ -38129,7 +38129,10 @@ function mergeArrayInPlace(dst, src) {
|
|
|
38129
38129
|
return res;
|
|
38130
38130
|
}
|
|
38131
38131
|
function errorString(e) {
|
|
38132
|
-
|
|
38132
|
+
if (e instanceof Error) {
|
|
38133
|
+
return e.message + "\n" + e.stack;
|
|
38134
|
+
}
|
|
38135
|
+
return String(e);
|
|
38133
38136
|
}
|
|
38134
38137
|
var USER_PROCESSOR = "user_processor";
|
|
38135
38138
|
function makeEthCallKey(param) {
|
|
@@ -38485,7 +38488,9 @@ var AbstractStoreContext = class {
|
|
|
38485
38488
|
const promises = [promise];
|
|
38486
38489
|
let timer;
|
|
38487
38490
|
if (timeoutSecs) {
|
|
38488
|
-
const timeoutPromise = new Promise(
|
|
38491
|
+
const timeoutPromise = new Promise(
|
|
38492
|
+
(_r, rej) => timer = setTimeout(rej, timeoutSecs * 1e3, timeoutError)
|
|
38493
|
+
);
|
|
38489
38494
|
promises.push(timeoutPromise);
|
|
38490
38495
|
}
|
|
38491
38496
|
this.doSend({
|
|
@@ -60356,4 +60361,4 @@ long/umd/index.js:
|
|
|
60356
60361
|
@noble/curves/esm/secp256k1.js:
|
|
60357
60362
|
(*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
|
|
60358
60363
|
*/
|
|
60359
|
-
//# sourceMappingURL=chunk-
|
|
60364
|
+
//# sourceMappingURL=chunk-VNWNJ423.js.map
|