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

added missing awaits

This commit is contained in:
PhilReact 2023-10-27 14:43:27 +03:00
parent 1228e4c89a
commit 9a55ab61bf

View File

@ -249,17 +249,17 @@ class CoinBalancesController extends connect(store)(LitElement) {
if(coin === 'ltc'){
await this.updateLtcWalletBalance()
} else if(coin === 'qort'){
this.updateQortWalletBalance()
await this.updateQortWalletBalance()
} else if(coin === 'doge'){
this.updateDogeWalletBalance()
await this.updateDogeWalletBalance()
} else if(coin === 'btc'){
this.updateBtcWalletBalance()
await this.updateBtcWalletBalance()
} else if(coin === 'dgb'){
this.updateDgbWalletBalance()
await this.updateDgbWalletBalance()
} else if(coin === 'rvn'){
this.updateRvnWalletBalance()
await this.updateRvnWalletBalance()
}else if(coin === 'arrr'){
this.updateArrrWalletBalance()
await this.updateArrrWalletBalance()
}
})