mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-03 10:46:54 +01:00
Merge pull request #6197 from jmacxx/fix_issue_6196
Bugfix: Signed account must show signed age.
This commit is contained in:
commit
a1eedafce7
1 changed files with 1 additions and 1 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue