Post
Topic
Board Pools (Altcoins)
Re: █▓▒░-< [ZPOOL.CA][HashTap™][FlexFee™] The miners multipool >-░▒▓█
by
jebidia
on 10/11/2017, 16:48:11 UTC
Is it me or is Equihash is defaulting the difficulty to 200?

My 1080 Ti rig is not finding shares at a steady pace.  It used to start at 127.  Can the default difficulty be lowered, please?

Thanks.

I noticed this on my 1080 as well that it is taking quite a long time to find shares at times.

Same issue for me, I read somewhere that 10 shares/min is good to aim for so for my 1070 I've set difficulty to 32.  Just set your password to
Code:
c=BTC,stats,d=32

I'm using Nemosminer's script (2.0.5), so I'm not sure where to modify that just for equihash.  It looks like it uses a variable for the password, which means it would change it for all of the other algos.

If you open EWBF.ps1 you should see the line
Code:
Arguments = "--api --server $($Pools.(Get-Algorithm($_)).Host) --port 2142 --fee 0 --solver 0 --eexit 1 --user $($Pools.(Get-Algorithm($_)).User) --pass $($Pools.(Get-Algorithm($_)).Pass)$($Commands.$_)"

you should be able to change that to
Code:
Arguments = "--api --server $($Pools.(Get-Algorithm($_)).Host) --port 2142 --fee 0 --solver 0 --eexit 1 --user $($Pools.(Get-Algorithm($_)).User) --pass $($Pools.(Get-Algorithm($_)).Pass)$($Commands.$_),d=32"

Actually it goes here....

Code:
Arguments = "--api --server $($Pools.(Get-Algorithm($_)).Host) --port 2142 --fee 0 --solver 0 --eexit 1 --user $($Pools.(Get-Algorithm($_)).User) --pass $($Pools.(Get-Algorithm($_)).Pass),d=32$($Commands.$_)"

Reason why is you can add intensity(or other arguments) in the code above if you like and it will be placed where the $Command is. Here is just an example.....

Code:
"equihash" = "-I 21" #Equihash

you have to right click on EWBF.ps1 and click edit



I too am on Nemosminer and am looking for a way to insert a d= for specific algos...is that possible with his config?  It appears that this method will apply to all algos in that specific miner.  I also noticed that the codeing is slightly different in the EWBF miner vs the others...I was looking to add a d= to some of the algos in the ccminers to assign a fixed difficulty setting...