Returned low thread priorty as it seems after thorough tests that there is an impact afterall. But this functionality is now controlled by option 'mining.lower'.

This commit is contained in:
Revertron
2021-04-10 14:03:52 +02:00
parent a74a0733ac
commit 3900790f03
7 changed files with 46 additions and 8 deletions
+3 -1
View File
@@ -84,7 +84,9 @@ impl Default for Dns {
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
pub struct Mining {
#[serde(default)]
pub threads: usize
pub threads: usize,
#[serde(default)]
pub lower: bool
}
#[derive(Clone, Debug, Serialize, Deserialize)]