From 3777d4b5156804f33ff03d94475fa86096467794 Mon Sep 17 00:00:00 2001 From: Bradley Suira Date: Fri, 6 Jan 2023 15:35:03 -0500 Subject: [PATCH] fix: changed default speed fee --- src/views/Swap/Swap.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/Swap/Swap.vue b/src/views/Swap/Swap.vue index c14ada3e5..6027e05a8 100644 --- a/src/views/Swap/Swap.vue +++ b/src/views/Swap/Swap.vue @@ -652,8 +652,8 @@ export default { await this._updateQuotes() } else { this.selectedFee = { - [this.assetChain]: 'average', - [this.toAssetChain]: 'average' + [this.assetChain]: 'fast', + [this.toAssetChain]: 'fast' } this.sendAmount = dpUI(this.defaultAmount) // Try to use the same account for (from and to) if it has more than one asset @@ -1225,11 +1225,11 @@ export default { await this.updateMaxSwapFees() })() - selectedFee[this.assetChain] = 'average' + selectedFee[this.assetChain] = 'fast' } if (this.toAssetChain) { this.updateFees({ asset: this.toAssetChain }) - selectedFee[this.toAssetChain] = 'average' + selectedFee[this.toAssetChain] = 'fast' } this.selectedFee = { ...selectedFee } }, @@ -1239,7 +1239,7 @@ export default { }, cancelCustomFee(asset) { this.currentStep = 'inputs' - this.selectedFee[asset] = 'average' + this.selectedFee[asset] = 'fast' }, resetQuoteTimer(resetInterval) { clearTimeout(this.quoteTimer)