remove quotos

This commit is contained in:
liangping 2022-10-28 13:10:47 +08:00
parent f309b899fc
commit 427d6bb241

View File

@ -673,14 +673,6 @@ export default {
initial() { initial() {
this.$http.getBankAccountBalance(this.address).then(bal => { this.$http.getBankAccountBalance(this.address).then(bal => {
this.assets = bal this.assets = bal
bal.forEach(x => {
const symbol = formatTokenDenom(x.denom)
if (!this.quotes[symbol] && symbol.indexOf('/') === -1) {
chainAPI.fetchTokenQuote(symbol).then(quote => {
this.$set(this.quotes, symbol, quote)
})
}
})
}) })
this.$http.getStakingReward(this.address).then(res => { this.$http.getStakingReward(this.address).then(res => {
this.reward = res this.reward = res