@sentio/runtime 2.40.0-rc.18 → 2.40.0-rc.19

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.
@@ -78525,11 +78525,7 @@ var ProcessorServiceImpl = class {
78525
78525
  to: address,
78526
78526
  data: param.calldata,
78527
78527
  blockTag
78528
- }).then((result) => {
78529
- const ret = [makeEthCallKey(param), result];
78530
- console.log(`got eth call result, key: ${ret[0]}, result: ${result}`);
78531
- return ret;
78532
- })
78528
+ }).then((result) => [makeEthCallKey(param), result])
78533
78529
  );
78534
78530
  }
78535
78531
  }
@@ -78588,7 +78584,6 @@ var ProcessorServiceImpl = class {
78588
78584
  }
78589
78585
  const subject = new import_rxjs.Subject();
78590
78586
  this.handleRequests(requests, subject).then(() => {
78591
- console.log("clearing prepared data");
78592
78587
  this.preparedData = { ethCallResults: {} };
78593
78588
  subject.complete();
78594
78589
  }).catch((e) => {
package/lib/index.js CHANGED
@@ -12,7 +12,7 @@ import {
12
12
  makeEthCallKey,
13
13
  mergeProcessResults,
14
14
  timeoutError
15
- } from "./chunk-FYV7R6QO.js";
15
+ } from "./chunk-WN27EZMT.js";
16
16
 
17
17
  // src/state.ts
18
18
  var _State = class {
@@ -40,7 +40,7 @@ import {
40
40
  require_minimal,
41
41
  require_src,
42
42
  trace
43
- } from "./chunk-FYV7R6QO.js";
43
+ } from "./chunk-WN27EZMT.js";
44
44
 
45
45
  // ../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js
46
46
  var require_universalify = __commonJS({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/runtime",
3
- "version": "2.40.0-rc.18",
3
+ "version": "2.40.0-rc.19",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
package/src/service.ts CHANGED
@@ -204,11 +204,7 @@ export class ProcessorServiceImpl implements ProcessorServiceImplementation {
204
204
  data: param.calldata,
205
205
  blockTag
206
206
  })
207
- .then((result) => {
208
- const ret = [makeEthCallKey(param), result]
209
- console.log(`got eth call result, key: ${ret[0]}, result: ${result}`)
210
- return ret
211
- })
207
+ .then((result) => [makeEthCallKey(param), result])
212
208
  )
213
209
  }
214
210
  }
@@ -281,7 +277,6 @@ export class ProcessorServiceImpl implements ProcessorServiceImplementation {
281
277
  const subject = new Subject<DeepPartial<ProcessStreamResponse>>()
282
278
  this.handleRequests(requests, subject)
283
279
  .then(() => {
284
- console.log('clearing prepared data')
285
280
  this.preparedData = { ethCallResults: {} }
286
281
  subject.complete()
287
282
  })