mirror of
https://github.com/Nathanwoodburn/FireWallet.git
synced 2024-11-10 09:18:15 +11:00
main: Require HSD API key
This commit is contained in:
parent
1a71329e6a
commit
03a6b4d6da
@ -278,6 +278,13 @@ namespace FireWallet
|
|||||||
|
|
||||||
private void SaveSettings(object sender, EventArgs e)
|
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)
|
if (checkBoxRunHSD.Checked)
|
||||||
{
|
{
|
||||||
StreamWriter sw = new StreamWriter(dir + "node.txt");
|
StreamWriter sw = new StreamWriter(dir + "node.txt");
|
||||||
|
Loading…
Reference in New Issue
Block a user