From 336f335de54c36bda7953a5d8c281e271f258edd Mon Sep 17 00:00:00 2001 From: jmacxx <47253594+jmacxx@users.noreply.github.com> Date: Wed, 11 May 2022 08:57:36 -0500 Subject: [PATCH] Bugfix: Signed account must show signed age. --- desktop/src/main/java/bisq/desktop/util/DisplayUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/src/main/java/bisq/desktop/util/DisplayUtils.java b/desktop/src/main/java/bisq/desktop/util/DisplayUtils.java index ea6e89611eb..afe74aa655d 100644 --- a/desktop/src/main/java/bisq/desktop/util/DisplayUtils.java +++ b/desktop/src/main/java/bisq/desktop/util/DisplayUtils.java @@ -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)) {