diff --git a/src/ORM/client/client.service.ts b/src/ORM/client/client.service.ts index 809e90d..29e427d 100644 --- a/src/ORM/client/client.service.ts +++ b/src/ORM/client/client.service.ts @@ -106,7 +106,7 @@ export class ClientService { public async getUserAgents() { const result = await this.clientRepository.createQueryBuilder('client') - .select('client.userAgent as userAgent') + .select('client.userAgent as "userAgent"') .addSelect('COUNT(client.userAgent)', 'count') .addSelect('MAX(client.bestDifficulty)', 'bestDifficulty') .addSelect('SUM(client.hashRate)', 'totalHashRate') diff --git a/src/models/StratumV1Client.ts b/src/models/StratumV1Client.ts index 00007e7..733f9eb 100644 --- a/src/models/StratumV1Client.ts +++ b/src/models/StratumV1Client.ts @@ -615,7 +615,7 @@ export class StratumV1Client { return true; } else { - console.error(`Error: Cannot write to closed or ended socket. ${this.extraNonceAndSessionId} ${message}`); + //console.error(`Error: Cannot write to closed or ended socket. ${this.extraNonceAndSessionId} ${message}`); this.destroy(); if (!this.socket.destroyed) { this.socket.destroy(); @@ -629,7 +629,7 @@ export class StratumV1Client { } else if (!this.socket.destroyed) { this.socket.destroy(); } - console.error(`Error occurred while writing to socket: ${this.extraNonceAndSessionId}`, error); + //console.error(`Error occurred while writing to socket: ${this.extraNonceAndSessionId}`, error); return false; } }