|
|
@ -266,8 +266,7 @@ class CoinTileItem extends React.Component { |
|
|
|
) |
|
|
|
); |
|
|
|
|
|
|
|
if (!this.props.Dashboard.skipFullDashboardUpdate && |
|
|
|
this.props.ActiveCoin.activeSection === 'default') { |
|
|
|
if (!this.props.Dashboard.skipFullDashboardUpdate) { |
|
|
|
Store.dispatch(getDashboardUpdate(coin, _propsDashboard)); |
|
|
|
} |
|
|
|
} else { |
|
|
@ -280,9 +279,12 @@ class CoinTileItem extends React.Component { |
|
|
|
) |
|
|
|
); |
|
|
|
} |
|
|
|
} else if (mode === 'spv' && this.props.Dashboard.electrumCoins[coin].pub && this.props.ActiveCoin.activeSection === 'default') { |
|
|
|
} else if (mode === 'spv' && this.props.Dashboard.electrumCoins[coin].pub) { |
|
|
|
Store.dispatch(shepherdElectrumBalance(coin, this.props.Dashboard.electrumCoins[coin].pub)); |
|
|
|
Store.dispatch(shepherdElectrumTransactions(coin, this.props.Dashboard.electrumCoins[coin].pub)); |
|
|
|
|
|
|
|
if (this.props.ActiveCoin.activeSection === 'default') { |
|
|
|
Store.dispatch(shepherdElectrumTransactions(coin, this.props.Dashboard.electrumCoins[coin].pub)); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|