fix: Typo when covernant ends with 'E'
All checks were successful
Check Code Quality / RuffCheck (push) Successful in 2m36s
Build Docker / BuildImage (push) Successful in 3m43s

This commit is contained in:
2026-03-11 14:15:20 +11:00
parent 06280bc806
commit 89a7a745a8

View File

@@ -187,6 +187,9 @@ def _summarize_transaction(tx: dict) -> str:
return f"Bid {value} on a domain" return f"Bid {value} on a domain"
if name: if name:
if action.endswith("E"):
return f"{action.title()}d {name} • Value {value}"
else:
return f"{action.title()}ed {name} • Value {value}" return f"{action.title()}ed {name} • Value {value}"
return f"{action.title()} covenant • Value {value}" return f"{action.title()} covenant • Value {value}"