do not uncheck auto_ready upon coind_error

log it to lbry.log and discord webhook
This commit is contained in:
Roy Lee 2022-11-13 23:51:30 -08:00
parent 64e6a709c5
commit 9f4844d5e5

View file

@ -3,10 +3,10 @@
void coind_error(YAAMP_COIND *coind, const char *s) void coind_error(YAAMP_COIND *coind, const char *s)
{ {
coind->auto_ready = false; // coind->auto_ready = false;
// object_delete(coind);
object_delete(coind); debuglog("%s error %s at block %d, ignore error\n", coind->name, s, coind->height);
debuglog("%s error %s\n", coind->name, s); lbrylog("%s error %s at block %d\n, ignore error", coind->name, s, coind->height);
} }
double coind_profitability(YAAMP_COIND *coind) double coind_profitability(YAAMP_COIND *coind)