multisig: Removed excess logging

This commit is contained in:
Nathan Woodburn 2023-06-27 12:44:18 +10:00
parent 0306b78d34
commit 7b51c62098
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -29,8 +29,6 @@ namespace FireWallet
{
// Get multisig info
string infoResp = await mainForm.APIGet("wallet/" + mainForm.Account + "/account/default", true);
mainForm.AddLog(infoResp);
if (infoResp == "Error")
{
NotifyForm notifyForm = new NotifyForm("Error getting multisig info");
@ -127,7 +125,6 @@ namespace FireWallet
string path = "wallet/" + mainForm.Account + "/shared-key";
string content = "{\"accountKey\": \"" + sig + "\",\"account\":\"default\"}";
string resp = await APIPut(path, true, content);
mainForm.AddLog(resp);
UpdateInfo();
}
@ -136,7 +133,6 @@ namespace FireWallet
string path = "wallet/" + mainForm.Account + "/shared-key";
string content = "{\"accountKey\": \"" + sig + "\",\"account\":\"default\"}";
string resp = await APIPut(path, true, content);
mainForm.AddLog(resp);
UpdateInfo();
}