Browse Source

Fix error 500

master
AlphaX-Projects 10 months ago committed by GitHub
parent
commit
54addff704
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      plugins/plugins/core/wallet/wallet-app.src.js

16
plugins/plugins/core/wallet/wallet-app.src.js

@ -4930,18 +4930,20 @@ class MultiWallet extends LitElement {
method: 'POST',
body: `${window.parent.reduxStore.getState().app.selectedAddress[arrrWalletName].seed58}`,
})
if (coin != this._selectedWallet) {
// We've switched away from this coin
}
if (res !== null && res !== "Synchronized") {
// Not synchronized yet - display sync status instead of balance
this.balanceString = res;
// Check again shortly after
await new Promise(resolve => setTimeout(resolve, 2000));
if (res.indexOf('<') > -1) {
this.balanceString = this.renderFetchText()
await new Promise(resolve => setTimeout(resolve, 2000))
this.showWallet()
return
} else if (res !== null && res !== "Synchronized") {
this.balanceString = res
await new Promise(resolve => setTimeout(resolve, 2000))
this.showWallet()
// No need to make balance or transaction list calls yet
return
}

Loading…
Cancel
Save