tmp: Add debugging for bids
All checks were successful
Build Docker / Build Image (push) Successful in 1m1s

This commit is contained in:
2025-07-16 16:53:14 +10:00
parent 1d5ed059b3
commit 631d558377
2 changed files with 6 additions and 1 deletions

View File

@@ -923,6 +923,10 @@ def auction(domain):
# Get TX
revealInfo = account_module.getRevealTX(reveal)
reveal['bid'] = revealInfo
print("RAW Bids found: ", len(bids))
print(json.dumps(bids, indent=4))
print("RAW Reveals found: ", len(reveals))
print(json.dumps(reveals, indent=4))
bids = render.bids(bids,reveals)
stats = domainInfo['info']['stats'] if 'stats' in domainInfo['info'] else {}