From ef1bedc5861081fa43d96abce0cbb828ebadc76c Mon Sep 17 00:00:00 2001 From: Samsonov Date: Thu, 21 Dec 2017 11:26:35 +0300 Subject: [PATCH] fix cant swith between pools when extraarg contains only config file --- Code/MinerInfo.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/MinerInfo.ps1 b/Code/MinerInfo.ps1 index da456b24..1aa373ba 100644 --- a/Code/MinerInfo.ps1 +++ b/Code/MinerInfo.ps1 @@ -61,7 +61,7 @@ class MinerInfo { [string] GetUniqueKey() { if (!$this.UniqueKey) { - $this.UniqueKey = "$($this.GetFilename())_$($this.GetKey())_$($this.Arguments)" + $this.UniqueKey = "$($this.GetFilename())_$($this.GetKey())_$($this.Pool)_$($this.Arguments)" } return $this.UniqueKey }