Browse Source

win sync workaround threshold 80 -> 30 percent

v0.25
pbca26 7 years ago
parent
commit
fc8b144728
  1. 2
      react/src/components/dashboard/walletsProgress/walletsProgress.js

2
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 {

Loading…
Cancel
Save