From 21ef8b2139d1bedc3648d6c604dfe829a8e822f5 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Sun, 11 Jun 2023 13:28:16 +1000 Subject: [PATCH] domain: Fixed single renews --- FireWallet/DomainForm.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/FireWallet/DomainForm.cs b/FireWallet/DomainForm.cs index 64305a6..6583682 100644 --- a/FireWallet/DomainForm.cs +++ b/FireWallet/DomainForm.cs @@ -771,9 +771,6 @@ namespace FireWallet } else if (state == "REVEAL") { - decimal bid = Convert.ToDecimal(textBoxBid.Text); - decimal blind = Convert.ToDecimal(textBoxBlind.Text); - decimal lockup = bid + blind; string content = "{\"method\": \"sendreveal\", \"params\": [\"" + domain + "\"]}"; string response = await APIPost("", true, content);