feat: Add red warning on auction page for potential outbids

This commit is contained in:
2025-07-11 13:26:14 +10:00
parent 4d4e0bf1e7
commit 33fc206c39
5 changed files with 15 additions and 9 deletions

View File

@@ -661,8 +661,6 @@ def getPossibleOutbids(account):
current_highest_bid = bid['value']
domain_bids = getBids(account, domain)
print(domain)
print(json.dumps(domain_bids, indent=4))
for domain_bid in domain_bids:
if domain_bid["own"]:
current_highest_bid = max(current_highest_bid, domain_bid['value'])