@sentio/runtime 2.43.1-rc.1 → 2.43.1-rc.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/runtime",
3
- "version": "2.43.1-rc.1",
3
+ "version": "2.43.1-rc.3",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
package/src/service.ts CHANGED
@@ -331,7 +331,9 @@ export class ProcessorServiceImpl implements ProcessorServiceImplementation {
331
331
  const subject = new Subject<DeepPartial<ProcessStreamResponse>>()
332
332
  this.handleRequests(requests, subject)
333
333
  .then(() => {
334
- this.preparedData = { ethCallResults: {} }
334
+ if (this.preparedData) {
335
+ this.preparedData = { ethCallResults: {} }
336
+ }
335
337
  subject.complete()
336
338
  })
337
339
  .catch((e) => {