Skip to content

Commit

Permalink
Merge pull request #6197 from jmacxx/fix_issue_6196
Browse files Browse the repository at this point in the history
Bugfix: Signed account must show signed age.
  • Loading branch information
ripcurlx authored May 11, 2022
2 parents cc252f6 + 336f335 commit a1eedaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/src/main/java/bisq/desktop/util/DisplayUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public static String getAccountWitnessDescription(AccountAgeWitnessService accou
signAge = accountAgeWitnessService.getWitnessSignAge(aaw.get(), new Date());
}
if (signAge > -1) {
description = Res.get("peerInfo.age.chargeBackRisk") + ": " + formatAccountAge(accountAge);
description = Res.get("peerInfo.age.chargeBackRisk") + ": " + formatAccountAge(signAge);
} else if (accountAge > -1) {
description = Res.get("peerInfoIcon.tooltip.age", formatAccountAge(accountAge));
if (PaymentMethod.hasChargebackRisk(paymentMethod)) {
Expand Down

0 comments on commit a1eedaf

Please sign in to comment.