Browse Source

added missing awaits

master
PhilReact 11 months ago
parent
commit
9a55ab61bf
  1. 12
      core/src/components/controllers/coin-balances-controller.js

12
core/src/components/controllers/coin-balances-controller.js

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

Loading…
Cancel
Save