5 Commits

2 changed files with 6 additions and 0 deletions

View File

@@ -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)
{ {

View File

@@ -1,5 +1,6 @@
# FireWallet # FireWallet
Experimental wallet for Handshake chain Experimental wallet for Handshake chain
The newer python version is available [here](https://github.com/nathanwoodburn/firewalletbrowser)
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
## Installation ## Installation