Skip to content

Commit

Permalink
Do not issue new requests while old ones are in progress.
Browse files Browse the repository at this point in the history
  • Loading branch information
zyuhel committed Dec 5, 2017
1 parent cfb0893 commit 0341419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/adamantServerApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ function install (Vue) {
})
}
Vue.prototype.updateCurrentValues = function () {
if (this.$store.state.passPhrase) {
if (this.$store.state.passPhrase && !this.$store.state.ajaxIsOngoing) {
// updating wallet balance
if (this.$route.path.indexOf('/transactions/') > -1) {
if (this.$route.params.tx_id) {
Expand Down

0 comments on commit 0341419

Please sign in to comment.