Skip to content

Commit

Permalink
Fix pending check
Browse files Browse the repository at this point in the history
  • Loading branch information
cronoh committed Jul 30, 2019
1 parent 65317b8 commit 873e4ca
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/app/services/wallet.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -532,11 +532,12 @@ export class WalletService {
}

hasPendingTransactions() {
if (this.appSettings.settings.minimumReceive) {
return this.wallet.hasPending;
} else {
return this.wallet.pendingRaw.gt(0);
}
return this.wallet.hasPending;
// if (this.appSettings.settings.minimumReceive) {
// return this.wallet.hasPending;
// } else {
// return this.wallet.pendingRaw.gt(0);
// }
}

reloadFiatBalances() {
Expand Down

0 comments on commit 873e4ca

Please sign in to comment.