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:
parent
59fb31f84d
commit
67c7f2dd61
@ -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…
x
Reference in New Issue
Block a user