From 8f241fc90a418cdcb96793bd0f38c8ece3744296 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Tue, 20 Jun 2023 12:39:51 +1000 Subject: [PATCH] main: Stop logging sending HNS unless errors --- FireWallet/MainForm.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/FireWallet/MainForm.cs b/FireWallet/MainForm.cs index 95540a0..4efec22 100644 --- a/FireWallet/MainForm.cs +++ b/FireWallet/MainForm.cs @@ -1595,8 +1595,6 @@ namespace FireWallet if (!WatchOnly) { - - AddLog("Sending " + amount.ToString() + " HNS to " + address); string content = "{\"method\": \"sendtoaddress\",\"params\": [ \"" + address + "\", " + amount.ToString() + ", \"\", \"\", " + subtractFee + " ]}"; string output = await APIPost("", true, content);