mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-02-11 17:55:51 +00:00
Fixed display error when ARRR wallet address isn't available yet.
This commit is contained in:
parent
4d15d5df40
commit
de4cf57f70
@ -1183,7 +1183,7 @@ class TradePortal extends LitElement {
|
||||
method: 'POST',
|
||||
body: `${window.parent.reduxStore.getState().app.selectedAddress.arrrWallet.seed58}`,
|
||||
})
|
||||
if (res != null) {
|
||||
if (res != null && res.error != 1201) {
|
||||
this.arrrWalletAddress = res
|
||||
}
|
||||
break
|
||||
|
@ -2725,7 +2725,7 @@ class MultiWallet extends LitElement {
|
||||
method: 'POST',
|
||||
body: `${window.parent.reduxStore.getState().app.selectedAddress[arrrWalletName].seed58}`,
|
||||
})
|
||||
if (res != null) {
|
||||
if (res != null && res.error != 1201) {
|
||||
this.arrrWalletAddress = res
|
||||
}
|
||||
break
|
||||
|
Loading…
x
Reference in New Issue
Block a user