From 9692f92c6b971cf90af7d59308646afd7b9027c2 Mon Sep 17 00:00:00 2001 From: XMRig Date: Mon, 21 Jan 2019 00:37:36 +0700 Subject: [PATCH] New default value for max-cpu-usage option is 100 (instead of 75) also this option now deprecated. --- src/core/Config.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/core/Config.cpp b/src/core/Config.cpp index c8891c77..e91a9f2b 100644 --- a/src/core/Config.cpp +++ b/src/core/Config.cpp @@ -5,7 +5,8 @@ * Copyright 2014-2016 Wolf9466 * Copyright 2016 Jay D Dee * Copyright 2017-2018 XMR-Stak , - * Copyright 2016-2018 XMRig , + * Copyright 2018-2019 SChernykh + * Copyright 2016-2019 XMRig , * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -48,7 +49,7 @@ xmrig::Config::Config() : xmrig::CommonConfig(), m_hugePages(true), m_safe(false), m_shouldSave(false), - m_maxCpuUsage(75), + m_maxCpuUsage(100), m_priority(-1) { }