Skip to content

Commit

Permalink
Merge branch 'haveno-dex:master' into issue1253
Browse files Browse the repository at this point in the history
  • Loading branch information
preland authored Sep 13, 2024
2 parents b1de3d2 + 1ea9a6f commit 724bccb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,8 @@ private void doClose(Button closeTicketButton, Button cancelButton) {
closeTicketButton.disableProperty().unbind();
hide();
}, (errMessage, err) -> {
log.error(errMessage);
log.error("Error closing dispute ticket: " + errMessage);
err.printStackTrace();
new Popup().error(err.toString()).show();
});
}
Expand Down
8 changes: 7 additions & 1 deletion scripts/install_tails/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):

```
Expand All @@ -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.

0 comments on commit 724bccb

Please sign in to comment.