Skip to content

Commit

Permalink
v6.4.13
Browse files Browse the repository at this point in the history
Fixes:
- Core: Update watchdog timers for dryrun miners

Improvements:
- Core: Minor performance improvements and optimize memory footprint

Miner updates
- Rigel-v1.21.0
  • Loading branch information
UselessGuru committed Feb 23, 2025
1 parent 277f59a commit 7197e74
Show file tree
Hide file tree
Showing 111 changed files with 485 additions and 478 deletions.
4 changes: 2 additions & 2 deletions Balances/HashCryptos.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<#
Product: UG-Miner
File: \Balances\HashCryptos.ps1
Version: 6.4.12
Version date: 2025/02/18
Version: 6.4.13
Version date: 2025/02/23
#>

$Name = [String](Get-Item $MyInvocation.MyCommand.Path).BaseName
Expand Down
4 changes: 2 additions & 2 deletions Balances/HiveON.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<#
Product: UG-Miner
File: \Balances\Hiveon.ps1
Version: 6.4.12
Version date: 2025/02/18
Version: 6.4.13
Version date: 2025/02/23
#>

$Name = [String](Get-Item $MyInvocation.MyCommand.Path).BaseName
Expand Down
4 changes: 2 additions & 2 deletions Balances/MiningDutch.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<#
Product: UG-Miner
File: \Balances\MiningDutch.ps1
Version: 6.4.12
Version date: 2025/02/18
Version: 6.4.13
Version date: 2025/02/23
#>

$Name = [String](Get-Item $MyInvocation.MyCommand.Path).BaseName
Expand Down
6 changes: 3 additions & 3 deletions Balances/MiningPoolHub.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<#
Product: UG-Miner
File: \Balances\MiningPoolHub.ps1
Version: 6.4.12
Version date: 2025/02/18
Version: 6.4.13
Version date: 2025/02/23
#>

$Name = [String](Get-Item $MyInvocation.MyCommand.Path).BaseName
Expand All @@ -37,7 +37,7 @@ While (-not $UserAllBalances -and $RetryCount -gt 0 -and $Config.MiningPoolHubAP
$WebResponse = Invoke-WebRequest -Uri $Url -TimeoutSec $PoolAPItimeout -ErrorAction Ignore

# PWSH 6+ no longer supports basic parsing -> parse text
$CoinList = [System.Collections.Generic.List[PSCustomObject]]@()
$CoinList = [System.Collections.Generic.HashSet[PSCustomObject]]@()
$InCoinList = $false

If ($WebResponse.statuscode -eq 200) {
Expand Down
4 changes: 2 additions & 2 deletions Balances/NiceHash.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<#
Product: UG-Miner
File: \Balances\NiceHash.ps1
Version: 6.4.12
Version date: 2025/02/18
Version: 6.4.13
Version date: 2025/02/23
#>

If ($Config.NiceHashWallet) {
Expand Down
4 changes: 2 additions & 2 deletions Balances/ProHashing.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<#
Product: UG-Miner
File: \Balances\ProHashing.ps1
Version: 6.4.12
Version date: 2025/02/18
Version: 6.4.13
Version date: 2025/02/23
#>

$Name = [String](Get-Item $MyInvocation.MyCommand.Path).BaseName
Expand Down
4 changes: 2 additions & 2 deletions Balances/ZergPool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<#
Product: UG-Miner
File: \Balances\ZergPool.ps1
Version: 6.4.12
Version date: 2025/02/18
Version: 6.4.13
Version date: 2025/02/23
#>

$Name = [String](Get-Item $MyInvocation.MyCommand.Path).BaseName
Expand Down
4 changes: 2 additions & 2 deletions Balances/Zpool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<#
Product: UG-Miner
File: \Balances\Zpool.ps1
Version: 6.4.12
Version date: 2025/02/18
Version: 6.4.13
Version date: 2025/02/23
#>

$Name = [String](Get-Item $MyInvocation.MyCommand.Path).BaseName
Expand Down
4 changes: 2 additions & 2 deletions Brains/HashCryptos.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<#
Product: UG-Miner
File: \Brains\MiningDutch.ps1
Version: 6.4.12
Version date: 2025/02/18
Version: 6.4.13
Version date: 2025/02/23
#>

using module ..\Includes\Include.psm1
Expand Down
4 changes: 2 additions & 2 deletions Brains/MiningDutch.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<#
Product: UG-Miner
File: \Brains\MiningDutch.ps1
Version: 6.4.12
Version date: 2025/02/18
Version: 6.4.13
Version date: 2025/02/23
#>

using module ..\Includes\Include.psm1
Expand Down
4 changes: 2 additions & 2 deletions Brains/ProHashing.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<#
Product: UG-Miner
File: \Brains\ProHashing.ps1
Version: 6.4.12
Version date: 2025/02/18
Version: 6.4.13
Version date: 2025/02/23
#>

using module ..\Includes\Include.psm1
Expand Down
4 changes: 2 additions & 2 deletions Brains/ZPool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<#
Product: UG-Miner
File: \Brains\ZPool.ps1
Version: 6.4.12
Version date: 2025/02/18
Version: 6.4.13
Version date: 2025/02/23
#>

using module ..\Includes\Include.psm1
Expand Down
4 changes: 2 additions & 2 deletions Brains/ZergPool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<#
Product: UG-Miner
File: \Brains\ZergPool.ps1
Version: 6.4.12
Version date: 2025/02/18
Version: 6.4.13
Version date: 2025/02/23
#>

using module ..\Includes\Include.psm1
Expand Down
2 changes: 1 addition & 1 deletion Data/Algorithms.json
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@
"xe": "XeChain",
"xechain": "XeChain",
"xelishash": "XelisHash",
"xelisv2": "XelisHash",
"xelisv2": "XelisHashV2",
"xelishashv2": "XelisHashV2",
"xelisv2pepew": "XelisV2PepePow",
"xelishashv2pepew": "XelisV2PepePow",
Expand Down
Loading

0 comments on commit 7197e74

Please sign in to comment.