From a3534c11e8d85582f210fa4401749988f2a324aa Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sun, 17 Jan 2016 16:27:24 +1100 Subject: [PATCH] Make node workinfo messages append instead of prepend to not arrive before node blocks --- src/stratifier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stratifier.c b/src/stratifier.c index a8d841d4..6ab8ac79 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -882,7 +882,7 @@ static void send_node_workinfo(sdata_t *sdata, const workbase_t *wb) if (bulk_send) { LOGINFO("Sending workinfo to mining nodes"); - ssend_bulk_prepend(sdata, bulk_send, messages); + ssend_bulk_append(sdata, bulk_send, messages); } }