Skip to content

Commit

Permalink
Update pool 2Miners
Browse files Browse the repository at this point in the history
- 1e8 -> 1e9 for NANO and BTC
  • Loading branch information
RainbowMiner committed Oct 27, 2021
1 parent 7d7c50f commit 7aeb84c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Balances/2Miners.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ $Pools_Data = @(
[PSCustomObject]@{rpc = "zen"; symbol = "ZEN"; port = 3030; fee = 1.0; divisor = 1e8}

#AutoExchange currencies
[PSCustomObject]@{rpc = "eth"; symbol = "BTC"; port = 2020; fee = 1.0; divisor = 1e8}
[PSCustomObject]@{rpc = "eth"; symbol = "NANO"; port = 2020; fee = 1.0; divisor = 1e8}
[PSCustomObject]@{rpc = "eth"; symbol = "BTC"; port = 2020; fee = 1.0; divisor = 1e9}
[PSCustomObject]@{rpc = "eth"; symbol = "NANO"; port = 2020; fee = 1.0; divisor = 1e9}
)

$Payout_Currencies | Where-Object {$Pool_Currency = $_.Name;$Pool_Data = $Pools_Data | Where-Object {$_.symbol -eq $Pool_Currency -or $_.altsymbol -eq $Pool_Currency};$Pool_Data -and (-not $Config.ExcludeCoinsymbolBalances.Count -or $Config.ExcludeCoinsymbolBalances -notcontains "$($_.Name)")} | Foreach-Object {
Expand Down

0 comments on commit 7aeb84c

Please sign in to comment.