diff --git a/src/views/wallet/Transfer.vue b/src/views/wallet/Transfer.vue index 2fbf993f8..bc222fd27 100644 --- a/src/views/wallet/Transfer.vue +++ b/src/views/wallet/Transfer.vue @@ -305,11 +305,10 @@ export default class Transfer extends Vue { }) // Update the user's balance - // setTimeout(() => { - await this.$store.dispatch('Assets/updateUTXOs') - await this.$store.dispatch('History/updateTransactionHistory') - this.updateSendAgainLock() - // }, 3000) + this.$store.dispatch('Assets/updateUTXOs').then(() => { + this.updateSendAgainLock() + }) + this.$store.dispatch('History/updateTransactionHistory') } updateSendAgainLock() {