main: Reduced extra logging

This commit is contained in:
Nathan Woodburn 2023-06-27 13:13:16 +10:00
parent e6d75533e3
commit 3caff3b7c1
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -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")
{