Skip to content

Commit

Permalink
Changed default xIntensity to 64, from a default intensity of 8 (way …
Browse files Browse the repository at this point in the history
…too low!)
  • Loading branch information
brian112358 committed Jun 2, 2018
1 parent c946f00 commit 90d3c4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
}
}
Expand Down

0 comments on commit 90d3c4c

Please sign in to comment.