mirror of
https://github.com/benjamin-wilson/public-pool.git
synced 2025-03-17 13:21:43 +01:00
undo stratum changes
This commit is contained in:
parent
8657ffec78
commit
c6885abd71
@ -48,6 +48,7 @@ const ORMModules = [
|
||||
logging: false,
|
||||
enableWAL: true,
|
||||
busyTimeout: 30 * 1000,
|
||||
|
||||
}),
|
||||
CacheModule.register(),
|
||||
ScheduleModule.forRoot(),
|
||||
|
@ -1,6 +1,5 @@
|
||||
import { Injectable, OnModuleInit } from '@nestjs/common';
|
||||
import { ConfigService } from '@nestjs/config';
|
||||
import { Interval } from '@nestjs/schedule';
|
||||
import { Server, Socket } from 'net';
|
||||
|
||||
import { StratumV1Client } from '../models/StratumV1Client';
|
||||
@ -16,9 +15,6 @@ import { StratumV1JobsService } from './stratum-v1-jobs.service';
|
||||
@Injectable()
|
||||
export class StratumV1Service implements OnModuleInit {
|
||||
|
||||
private maxConnections = 50;
|
||||
private currentConnections = 0;
|
||||
|
||||
constructor(
|
||||
private readonly bitcoinRpcService: BitcoinRpcService,
|
||||
private readonly clientService: ClientService,
|
||||
@ -32,20 +28,13 @@ export class StratumV1Service implements OnModuleInit {
|
||||
|
||||
}
|
||||
|
||||
@Interval(1000 * 30)
|
||||
public async incrementConnections() {
|
||||
this.maxConnections += 50;
|
||||
}
|
||||
|
||||
async onModuleInit(): Promise<void> {
|
||||
console.log(`Enable Solo: ${process.env.ENABLE_SOLO}`)
|
||||
|
||||
if (process.env.ENABLE_SOLO == 'true') {
|
||||
//await this.clientStatisticsService.deleteAll();
|
||||
console.log(`NODE_APP_INSTANCE: ${process.env.NODE_APP_INSTANCE}`)
|
||||
if (process.env.NODE_APP_INSTANCE == '0') {
|
||||
await this.clientService.deleteAll();
|
||||
}
|
||||
|
||||
setTimeout(() => {
|
||||
this.startSocketServer();
|
||||
}, 1000 * 10)
|
||||
@ -56,15 +45,6 @@ export class StratumV1Service implements OnModuleInit {
|
||||
private startSocketServer() {
|
||||
const server = new Server(async (socket: Socket) => {
|
||||
|
||||
this.currentConnections++;
|
||||
|
||||
if (this.currentConnections > this.maxConnections) {
|
||||
// If the maximum number of connections is reached, reject the new connection
|
||||
console.log('Connection limit reached. Rejecting new connection.');
|
||||
socket.end(); // Close the socket immediately
|
||||
this.currentConnections--; // Decrement the count as the connection is rejected
|
||||
}
|
||||
|
||||
//5 min
|
||||
socket.setTimeout(1000 * 60 * 5);
|
||||
|
||||
@ -95,11 +75,6 @@ export class StratumV1Service implements OnModuleInit {
|
||||
socket.destroy();
|
||||
});
|
||||
|
||||
|
||||
socket.on('end', () => {
|
||||
this.currentConnections--;
|
||||
});
|
||||
|
||||
socket.on('error', async (error: Error) => { });
|
||||
|
||||
// //console.log(`Client disconnected, socket error, ${client.extraNonceAndSessionId}`);
|
||||
@ -107,7 +82,6 @@ export class StratumV1Service implements OnModuleInit {
|
||||
|
||||
});
|
||||
|
||||
|
||||
server.listen(process.env.STRATUM_PORT, () => {
|
||||
console.log(`Stratum server is listening on port ${process.env.STRATUM_PORT}`);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user