Skip to content

Commit

Permalink
Merge pull request #1135 from meritlabs/fic/build
Browse files Browse the repository at this point in the history
Compilation err
  • Loading branch information
vlgutv22 authored Nov 5, 2018
2 parents 54cec82 + 2fb98f4 commit a2e9bee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lightwallet/common/models/display-wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export class DisplayWallet {
}

canReceiveGrowthReward() {
return this.confirmed && this.totalNetworkValueMicro > MINIMAL_STAKE;
return this.confirmed && this.totalBalanceMicros > MINIMAL_STAKE;
}

async updateRewards() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export class BackupNewWallet {
copy: string = 'COPY';
showPhrase: boolean = false;
showNextBtn: boolean = false;
isLastStep: boolean = false;

copyState() {
this.copy = 'COPIED';
Expand Down

0 comments on commit a2e9bee

Please sign in to comment.