Browse Source

Only show ARRR addresses when response is 78 characters long.

pirate-chain
CalDescent 2 years ago
parent
commit
67c7f2dd61
  1. 2
      qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js

2
qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js

@ -2780,7 +2780,7 @@ class MultiWallet extends LitElement {
method: 'POST',
body: `${window.parent.reduxStore.getState().app.selectedAddress[arrrWalletName].seed58}`,
})
if (res != null && res.error != 1201) {
if (res != null && res.error != 1201 && res.length === 78) {
this.arrrWalletAddress = res
}
break

Loading…
Cancel
Save