diff --git a/Config.txt b/Config.txt index 6e090542..81841107 100644 --- a/Config.txt +++ b/Config.txt @@ -42,6 +42,7 @@ -- WALLETS, for autoexchange pools you only need set a wallet for prefered currency (@@currency), other pools without autoexchange like Yiimp need as login a wallet of same coin you are mining, you can add wallets while pattern @@WALLET_XXX (XXX=currency symbol) +-- For nicehash, if a @@WALLET_BTC_NICE=XXXXXXX is found it will be used, if not @@WALLET_BTC will be used @@WALLET_BTC=1AVMHnFgc6SW33cwqrDyy2Fug9CsS8u6TM @@WALLET_XXX=YOUR_WALLET_DIRECTION diff --git a/Pools/NICEHASH.ps1 b/Pools/NICEHASH.ps1 index e7a92716..e99fa645 100644 --- a/Pools/NICEHASH.ps1 +++ b/Pools/NICEHASH.ps1 @@ -116,7 +116,7 @@ if (($Querymode -eq "core" ) -or ($Querymode -eq "Menu")){ Protocol = "stratum+tcp" Host = ($_.name)+"."+$location.NhLocation+".nicehash.com" Port = $_.port - User = $CoinsWallets.get_item('BTC')+'.'+$Workername + User = $(if ($CoinsWallets.get_item('BTC_NICE') -ne $null) {$CoinsWallets.get_item('BTC_NICE')} else {$CoinsWallets.get_item('BTC')})+'.'+$Workername Pass = "x" Location = $location.MMLocation SSL = $false