From 0b8892db00019eb6b0c2cc8251639f13c3be1c31 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Fri, 5 Feb 2016 16:54:48 +1100 Subject: [PATCH] Increase txn backlog to nodes to 100 --- src/stratifier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stratifier.c b/src/stratifier.c index 4fde094b..4a111646 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -6327,7 +6327,7 @@ static void add_node_txns(sdata_t *sdata, const json_t *val) /* Set the refcount for node transactions greater than the * upstream pool to ensure we never age them faster than the * pool does. */ - txn->refcount = 20; + txn->refcount = 100; HASH_ADD_STR(sdata->txns, hash, txn); added++; }