From 9f4844d5e5f83ad4c556f932f818eb9c9c863e53 Mon Sep 17 00:00:00 2001 From: Roy Lee Date: Sun, 13 Nov 2022 23:51:30 -0800 Subject: [PATCH] do not uncheck auto_ready upon coind_error log it to lbry.log and discord webhook --- stratum/coind.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stratum/coind.cpp b/stratum/coind.cpp index 1eb83a3..437d6bf 100644 --- a/stratum/coind.cpp +++ b/stratum/coind.cpp @@ -3,10 +3,10 @@ void coind_error(YAAMP_COIND *coind, const char *s) { - coind->auto_ready = false; - - object_delete(coind); - debuglog("%s error %s\n", coind->name, s); + // coind->auto_ready = false; + // object_delete(coind); + debuglog("%s error %s at block %d, ignore error\n", coind->name, s, coind->height); + lbrylog("%s error %s at block %d\n, ignore error", coind->name, s, coind->height); } double coind_profitability(YAAMP_COIND *coind)