mirror of
https://github.com/Nathanwoodburn/FireWallet.git
synced 2024-11-10 09:18:15 +11:00
main: Fixed error check
This commit is contained in:
parent
3baa6ec8e3
commit
2760e485ce
@ -984,12 +984,13 @@ namespace FireWallet
|
|||||||
amount.ToString() + ", \"\", \"\", " + subtractFee + " ]}";
|
amount.ToString() + ", \"\", \"\", " + subtractFee + " ]}";
|
||||||
string output = await APIPost("", true, content);
|
string output = await APIPost("", true, content);
|
||||||
JObject APIresp = JObject.Parse(output);
|
JObject APIresp = JObject.Parse(output);
|
||||||
if (APIresp["error"].ToString() == "null")
|
if (APIresp["error"].ToString() != "")
|
||||||
{
|
{
|
||||||
NotifyForm notify = new NotifyForm("Error Transaction Failed");
|
NotifyForm notify = new NotifyForm("Error Transaction Failed");
|
||||||
notify.ShowDialog();
|
notify.ShowDialog();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
AddLog(APIresp.ToString());
|
||||||
string hash = APIresp["result"].ToString();
|
string hash = APIresp["result"].ToString();
|
||||||
string link = userSettings["explorer-tx"] + hash;
|
string link = userSettings["explorer-tx"] + hash;
|
||||||
NotifyForm notifySuccess = new NotifyForm("Transaction Sent\nThis transaction could take up to 20 minutes to mine",
|
NotifyForm notifySuccess = new NotifyForm("Transaction Sent\nThis transaction could take up to 20 minutes to mine",
|
||||||
|
Loading…
Reference in New Issue
Block a user