Skip to content

Commit

Permalink
fix: get rid of console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandrMov committed Oct 23, 2023
1 parent f14ee77 commit 01634ac
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose.e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ services:
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASSWORD}
- JOB_INTERVAL_REGISTRY=${JOB_INTERVAL_REGISTRY}
- VALIDATOR_REGISTRY_ENABLE=true
- VALIDATOR_REGISTRY_ENABLE=${VALIDATOR_REGISTRY_ENABLE}
- JOB_INTERVAL_VALIDATORS_REGISTRY=${JOB_INTERVAL_VALIDATORS_REGISTRY}
depends_on:
- e2e_pgdb
1 change: 0 additions & 1 deletion src/common/registry/test/fetch/operator.fetch.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ describe('Operators', () => {
// operatorFields(operator);
return iface.encodeFunctionResult('getNodeOperator', operatorFields(operator));
});
console.log('aaaaa', expected);
const result = await fetchService.fetch(address);

expect(result).toEqual([expected]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ export class SRModulesOperatorsController {
})
@Get('modules/:module_id/operators/:operator_id')
getModuleOperator(@Param('module_id', ModuleIdPipe) module_id: string | number, @Param() operator: OperatorId) {
console.log(module_id, typeof module_id);
return this.srModulesOperators.getModuleOperator(module_id, operator.operator_id);
}
}

0 comments on commit 01634ac

Please sign in to comment.