From 90d3c4c1160550f334a63e1bd8e486b9bdf884d1 Mon Sep 17 00:00:00 2001 From: Brian Lee Date: Fri, 1 Jun 2018 21:39:09 -0700 Subject: [PATCH] Changed default xIntensity to 64, from a default intensity of 8 (way too low!) --- config_parser.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config_parser.c b/config_parser.c index b587fd5b..77dab7be 100644 --- a/config_parser.c +++ b/config_parser.c @@ -1100,9 +1100,9 @@ void apply_pool_profile(struct pool *pool) pool->intensity = default_profile.intensity; } else { - //nothing anywhere? default to sgminer default of 8 - int_type = 0; - pool->intensity = strdup("8"); + //nothing anywhere? default to Avermore default of 19 + int_type = 1; + pool->xintensity = strdup("64"); } } }