Browse Source

spv reconnect missing check

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

2
react/src/components/dashboard/walletsData/walletsData.js

@ -332,6 +332,7 @@ class WalletsData extends React.Component {
} }
spvAutoReconnect() { spvAutoReconnect() {
if (this.props.Dashboard.electrumCoins[this.props.ActiveCoin.coin].serverList !== 'none') {
let _spvServers = this.props.Dashboard.electrumCoins[this.props.ActiveCoin.coin].serverList; let _spvServers = this.props.Dashboard.electrumCoins[this.props.ActiveCoin.coin].serverList;
let _server = [ let _server = [
this.props.Dashboard.electrumCoins[this.props.ActiveCoin.coin].server.ip, this.props.Dashboard.electrumCoins[this.props.ActiveCoin.coin].server.ip,
@ -364,6 +365,7 @@ class WalletsData extends React.Component {
} }
}); });
} }
}
isFullySynced() { isFullySynced() {
const _progress = this.props.ActiveCoin.progress; const _progress = this.props.ActiveCoin.progress;

Loading…
Cancel
Save