4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-11 17:55:51 +00:00

Only show ARRR addresses when response is 78 characters long.

This commit is contained in:
CalDescent 2022-08-17 18:41:48 +01:00
parent 59fb31f84d
commit 67c7f2dd61

View File

@ -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