Merge branch 'haveno-dex:master' into issue1253

This commit is contained in:
preland 2024-09-13 13:54:34 -05:00 committed by GitHub
commit 724bccbd80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 2 deletions

View File

@ -678,7 +678,8 @@ public class DisputeSummaryWindow extends Overlay<DisputeSummaryWindow> {
closeTicketButton.disableProperty().unbind();
hide();
}, (errMessage, err) -> {
log.error(errMessage);
log.error("Error closing dispute ticket: " + errMessage);
err.printStackTrace();
new Popup().error(err.toString()).show();
});
}

View File

@ -2,7 +2,7 @@
Install Haveno on Tails by following these steps:
1. Enable persistent storage dotfiles and admin password before starting tails.
1. Enable persistent storage dotfiles and admin password before starting Tails.
2. Download [haveno-install.sh](haveno-install.sh):
```
@ -22,3 +22,9 @@ Install Haveno on Tails by following these steps:
```
4. Upon successful execution of the script (no errors), the Haveno release will be installed to persistent storage and can be launched via the desktop shortcut in the 'Other' section of the start menu.
> [!note]
> If you have already installed Haveno on Tails, we recommend moving your data directory (/home/amnesia/Persistent/Haveno-example) to the new default location (/home/amnesia/Persistent/haveno/Data/Haveno-example), to retain your history and for future support.
> [!note]
> Modern versions of Tails will invoke `curl` over Tor, but if your installation does not, then you can add `--socks5-hostname 127.0.0.1:9050` when invoking the install script.