mirror of
https://github.com/Nathanwoodburn/FireWallet.git
synced 2025-12-06 16:43:01 +11:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
2560fa734c
|
|||
|
f99aa4996f
|
|||
|
aca91a863b
|
|||
|
9a12b5d162
|
|||
|
2a6a708d70
|
|||
|
8758a5fd5e
|
|||
|
7af283a71e
|
@@ -61,7 +61,7 @@ namespace FireWallet
|
|||||||
notifyForm.Dispose();
|
notifyForm.Dispose();
|
||||||
this.Close();
|
this.Close();
|
||||||
}
|
}
|
||||||
}
|
} else this.Close();
|
||||||
}
|
}
|
||||||
ParseTX();
|
ParseTX();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -839,6 +839,11 @@ namespace FireWallet
|
|||||||
|
|
||||||
Account = comboBoxaccount.Text;
|
Account = comboBoxaccount.Text;
|
||||||
Password = textBoxaccountpassword.Text;
|
Password = textBoxaccountpassword.Text;
|
||||||
|
// Escape the password to allow use in JSON
|
||||||
|
Password = Password.Replace("\\", "\\\\");
|
||||||
|
Password = Password.Replace("\"", "\\\"");
|
||||||
|
|
||||||
|
|
||||||
bool loggedin = await Login();
|
bool loggedin = await Login();
|
||||||
if (loggedin)
|
if (loggedin)
|
||||||
{
|
{
|
||||||
|
|||||||
18
README.md
18
README.md
@@ -1,3 +1,21 @@
|
|||||||
|
<br>
|
||||||
|
|
||||||
|
### Due to a recent issue with bids being sent with the wrong address included with the lockup please update HSD.
|
||||||
|
This can be done if you are using the internal node.
|
||||||
|
1. Close the wallet if it is open
|
||||||
|
2. Open a terminal and run
|
||||||
|
```bat
|
||||||
|
cd %appdata%\FireWallet\hsd
|
||||||
|
git pull
|
||||||
|
```
|
||||||
|
3. Verify the fix is pulled by running
|
||||||
|
```bat
|
||||||
|
if exist "test\wallet-importnonce-test.js" (echo Fix pulled) else (echo Fix isn't pulled)
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
<br><br>
|
||||||
|
|
||||||
# FireWallet
|
# FireWallet
|
||||||
Experimental wallet for Handshake chain
|
Experimental wallet for Handshake chain
|
||||||
Info about the project can be found at https://firewallet or https://firewallet.au
|
Info about the project can be found at https://firewallet or https://firewallet.au
|
||||||
|
|||||||
Reference in New Issue
Block a user