@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
package/lib/processor-runner.js
CHANGED
package/package.json
CHANGED
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
|
})
|