mirror of
https://github.com/Nathanwoodburn/FireWallet.git
synced 2024-11-10 09:18:15 +11:00
multisig: Removed excess logging
This commit is contained in:
parent
0306b78d34
commit
7b51c62098
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user