Skip to content

Commit 87e5762

Browse files
committed
fix: code clean up
1 parent a93585a commit 87e5762

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/common/consensus-provider/utils/process-json-stream-beacon-state.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ export async function processJsonStreamBeaconState(readableStream) {
1818
const result = {} as BeaconState;
1919

2020
pipeline.on('data', ({ key, value }) => {
21-
console.log('key', key);
2221
if (keys.includes(key)) {
2322
result[key] = value; // Store key-value pairs in an object
2423
}

src/jobs/validators/validators.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ export class ValidatorsService {
6666
stateId: 'head',
6767
});
6868
const data: ResponseValidatorsData = await processValidatorsStream(stream);
69-
console.log('data', data);
7069
const currentEpoch = this.genesisTimeService.getCurrentEpoch();
7170

7271
let activeValidatorCount = 0;

0 commit comments

Comments
 (0)