@sentio/runtime 3.8.0-rc.3 → 3.9.0-rc.10

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.
@@ -38129,7 +38129,10 @@ function mergeArrayInPlace(dst, src) {
38129
38129
  return res;
38130
38130
  }
38131
38131
  function errorString(e) {
38132
- return e.message + "\n" + e.stack;
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((_r, rej) => timer = setTimeout(rej, timeoutSecs * 1e3, timeoutError));
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-4ZC4G6EI.js.map
60364
+ //# sourceMappingURL=chunk-VNWNJ423.js.map