coin-hive-stratum
Advanced tools
Comparing version 2.1.3 to 2.1.4
{ | ||
"name": "coin-hive-stratum", | ||
"version": "2.1.3", | ||
"version": "2.1.4", | ||
"description": "proxy to use CoinHive miner on any stratum pool", | ||
@@ -5,0 +5,0 @@ "main": "build", |
@@ -176,2 +176,6 @@ import * as WebSocket from "ws"; | ||
isEmpty(connection: Connection): boolean { | ||
return connection.miners.length === 0 && connection.donations.length === 0; | ||
} | ||
getStats(): Stats { | ||
@@ -208,3 +212,3 @@ return Object.keys(this.connections).reduce( | ||
const connections = this.connections[connectionId]; | ||
const availableConnection = connections.filter(connection => this.isAvailable(connection)); | ||
const availableConnection = connections.filter(connection => this.isEmpty(connection)); | ||
const unusedConnections = availableConnection.slice(1); | ||
@@ -211,0 +215,0 @@ unusedConnections.forEach(unusedConnection => { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
72551
1888