@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/lib/{chunk-JKDUEWK7.js → chunk-ORW2H5MV.js} +11 -11
- package/lib/{chunk-JKDUEWK7.js.map → chunk-ORW2H5MV.js.map} +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/lib/processor-runner.js +2 -2
- package/lib/processor-runner.js.map +1 -1
- package/package.json +1 -1
- package/src/service.ts +3 -1
package/package.json
CHANGED
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
|
334
|
+
if (this.preparedData) {
|
335
|
+
this.preparedData = { ethCallResults: {} }
|
336
|
+
}
|
335
337
|
subject.complete()
|
336
338
|
})
|
337
339
|
.catch((e) => {
|