Browse Source

AGT-103

v0.25
pbca26 7 years ago
parent
commit
d3c1e88d8a
  1. 16
      react/src/actions/actions/addCoin.js
  2. 2
      react/src/components/dashboard/walletsData/walletsData.js

16
react/src/actions/actions/addCoin.js

@ -273,7 +273,23 @@ export function addCoinResult(coin, mode) {
if (Number(mode) === 0) {
dispatch(activeHandle());
dispatch(shepherdElectrumCoins());
setTimeout(function() {
dispatch(activeHandle());
dispatch(shepherdElectrumCoins());
}, 500);
setTimeout(function() {
dispatch(activeHandle());
dispatch(shepherdElectrumCoins());
}, 1000);
setTimeout(function() {
dispatch(activeHandle());
dispatch(shepherdElectrumCoins());
}, 2000);
} else {
dispatch(activeHandle());
dispatch(getDexCoins());
setTimeout(function() {
dispatch(activeHandle());
dispatch(getDexCoins());

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

@ -283,7 +283,7 @@ class WalletsData extends React.Component {
<td colSpan="7" className="table-cell-offset-16 color-warning">
Connection error!
<span className={ this.props.Dashboard.electrumCoins[this.props.ActiveCoin.coin].serverList !== 'none' ? '' : 'hide' }>
<br/>Try to connect to another SPV server.
<br/>Try to connect to another SPV server. To do that go to "Settings" -> "SPV Server List" tab, choose new server and click "OK".
</span>
</td>
</tr>

Loading…
Cancel
Save