diff --git a/FireWallet/NodeForm.cs b/FireWallet/NodeForm.cs index e86fdaa..455aa94 100644 --- a/FireWallet/NodeForm.cs +++ b/FireWallet/NodeForm.cs @@ -278,6 +278,13 @@ namespace FireWallet private void SaveSettings(object sender, EventArgs e) { + if (textBoxNodeKey.Text == "") + { + NotifyForm notifyForm = new NotifyForm("Please enter a key"); + notifyForm.ShowDialog(); + notifyForm.Dispose(); + return; + } if (checkBoxRunHSD.Checked) { StreamWriter sw = new StreamWriter(dir + "node.txt");