From 21043fc12400784a21115dcbc8ad3475b9cef8e9 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Sat, 12 Jul 2025 11:56:22 +1000 Subject: [PATCH] fix: Reveal from auction page crash Reveal from the auction page had a missing function call --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index a3fab1d..33ba54f 100644 --- a/main.py +++ b/main.py @@ -1070,7 +1070,7 @@ def reveal_auction(domain): return redirect("/logout") domain = domain.lower() - response = account_module(request.cookies.get("account"),domain) + response = account_module.revealAuction(request.cookies.get("account"),domain) if 'error' in response: return redirect("/auction/" + domain + "?message=" + response['error']['message']) return redirect("/success?tx=" + response['hash'])