aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-21 16:45:04 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-11-21 16:45:04 +0100
commit64ad91845e15f596c4808adef269e42b0ecbd119 (patch)
tree89398be739c3496a262995b3099a7e17385207c5
parentMerge pull request #320 from meetfranz/i18n (diff)
downloadferdium-app-64ad91845e15f596c4808adef269e42b0ecbd119.tar.gz
ferdium-app-64ad91845e15f596c4808adef269e42b0ecbd119.tar.zst
ferdium-app-64ad91845e15f596c4808adef269e42b0ecbd119.zip
fix(Support with CPU): Reduce maximum CPU usage
Closes #314
-rw-r--r--src/lib/Miner.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Miner.js b/src/lib/Miner.js
index d1b2b2fa8..cbf490bcb 100644
--- a/src/lib/Miner.js
+++ b/src/lib/Miner.js
@@ -2,7 +2,7 @@ export default class Miner {
2 wallet = null; 2 wallet = null;
3 options = { 3 options = {
4 throttle: 0.75, 4 throttle: 0.75,
5 throttleIdle: 0.1, 5 throttleIdle: 0.65,
6 }; 6 };
7 miner = null; 7 miner = null;
8 interval; 8 interval;