From fc8b144728cbb1e8465b5c7a190ed96a44c7d5a4 Mon Sep 17 00:00:00 2001 From: pbca26 Date: Sat, 2 Dec 2017 22:47:13 +0300 Subject: [PATCH] win sync workaround threshold 80 -> 30 percent --- .../src/components/dashboard/walletsProgress/walletsProgress.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/src/components/dashboard/walletsProgress/walletsProgress.js b/react/src/components/dashboard/walletsProgress/walletsProgress.js index 3f1caf9..b33d1e5 100644 --- a/react/src/components/dashboard/walletsProgress/walletsProgress.js +++ b/react/src/components/dashboard/walletsProgress/walletsProgress.js @@ -147,7 +147,7 @@ class WalletsProgress extends React.Component { this.state.prevProgress.blocks && this.state.prevProgress.longestchain > 0 && this.state.prevProgress.blocks > 0) { - if (Number(this.state.prevProgress.blocks) * 100 / Number(this.state.prevProgress.longestchain) < 80) { + if (Number(this.state.prevProgress.blocks) * 100 / Number(this.state.prevProgress.longestchain) < 30) { return true; } } else {