Skip to content

Commit

Permalink
Separated Nicehash wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
tutulino committed Dec 2, 2017
1 parent b2c85d4 commit bb437ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Pools/NICEHASH.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bb437ee

Please sign in to comment.