Today get message " Warning: No miners above MinProfit" and all mining activity stopped.
Anyone else get this?
+ 1
I am also receiving the same error message.
I will look at the logs later today to see if I can identify the issue
Disclaimer: I am not a programmer.
EDIT:
I temporary solved the issue by editing the Core.ps1 file with Notepad++
Line 427
$CDKResponse = Invoke-APIRequest -Url "
https://api.coindesk.com/v1/bpi/currentprice/$LocalCurrency.json" -MaxAge 60 |
It appears that coindesk api is not responding to https request, so I deleted the "s" from https, so it looked like this
$CDKResponse = Invoke-APIRequest -Url "
http://api.coindesk.com/v1/bpi/currentprice/$LocalCurrency.json" -MaxAge 60 |
Saved and relaunched and it's working again.
Hopefully someone smarter can provide a proper fix.