From 02035ee74c0080d9fff8420d3d327b9a92bc316d Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Thu, 10 Dec 2015 17:01:11 +1100 Subject: [PATCH] Decrease the tolerance for attempted block submission to within 0.1% --- src/stratifier.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stratifier.c b/src/stratifier.c index a8321e17..25f654ab 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -2955,8 +2955,8 @@ test_blocksolve(const stratum_instance_t *client, const workbase_t *wb, const uc uchar swap[32]; ts_t ts_now; - /* Submit anything over 99% of the diff in case of rounding errors */ - if (diff < sdata->current_workbase->network_diff * 0.99) + /* Submit anything over 99.9% of the diff in case of rounding errors */ + if (diff < sdata->current_workbase->network_diff * 0.999) return; LOGWARNING("Possible block solve diff %f !", diff);