Post
Topic
Board Mining (Altcoins)
Re: [Forager] v18.10 - Multi-Pool profit switching miner (AMD/NVIDIA/CPU)
by
cable_loco
on 14/11/2018, 16:26:01 UTC
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.