Bugfix: Signed account must show signed age.

This commit is contained in:
jmacxx 2022-05-11 08:57:36 -05:00
parent cc252f69b4
commit 336f335de5
No known key found for this signature in database
GPG key ID: 155297BABFE94A1B

View file

@ -93,7 +93,7 @@ public class DisplayUtils {
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)) {