From 3caff3b7c188dc727c0bb989c9dd6d795bea0af5 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Tue, 27 Jun 2023 13:13:16 +1000 Subject: [PATCH] main: Reduced extra logging --- FireWallet/MainForm.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/FireWallet/MainForm.cs b/FireWallet/MainForm.cs index 1bd227a..830e909 100644 --- a/FireWallet/MainForm.cs +++ b/FireWallet/MainForm.cs @@ -900,7 +900,6 @@ namespace FireWallet buttonRevealAll.Enabled = false; string content = "{\"method\": \"sendreveal\"}"; string response = await APIPost("", true, content); - AddLog(response); if (response == "Error") { AddLog("Error sending reveal"); @@ -936,7 +935,6 @@ namespace FireWallet { buttonRedeemAll.Enabled = false; string content = "{\"method\": \"sendbatch\", \"params\":[[[\"REDEEM\"]]]}"; - AddLog(content); string response = await APIPost("", true, content); if (response == "Error") { @@ -975,7 +973,6 @@ namespace FireWallet { buttonSendAll.Enabled = false; string content = "{\"method\": \"sendbatch\", \"params\":[[[\"REVEAL\"],[\"REDEEM\"],[\"RENEW\"]]]}"; - AddLog(content); string response = await APIPost("", true, content); if (response == "Error") {