From ac80f3510c46dbdea24f131abf421003d1d577d8 Mon Sep 17 00:00:00 2001 From: Manfred Karrer Date: Tue, 29 Mar 2016 15:39:38 +0200 Subject: [PATCH] Improve error msg --- .../gui/main/overlays/windows/SelectDepositTxWindow.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gui/src/main/java/io/bitsquare/gui/main/overlays/windows/SelectDepositTxWindow.java b/gui/src/main/java/io/bitsquare/gui/main/overlays/windows/SelectDepositTxWindow.java index 5bdff44a8d..8c1e1ce236 100644 --- a/gui/src/main/java/io/bitsquare/gui/main/overlays/windows/SelectDepositTxWindow.java +++ b/gui/src/main/java/io/bitsquare/gui/main/overlays/windows/SelectDepositTxWindow.java @@ -85,7 +85,13 @@ public class SelectDepositTxWindow extends Overlay { Label label = addMultilineLabel(gridPane, ++rowIndex, "The deposit transaction was not stored in the trade.\n" + "Please select one of the existing MultiSig transactions from your wallet which was the " + - "deposit transaction used in the failed trade.", + "deposit transaction used in the failed trade.\n\n" + + "You can find the correct transaction by opening the trade details window (click on the trade ID in the list)" + + " and following the offer fee payment transaction output to the next transaction where you see " + + "the Multisig deposit transaction (the address starts with 3). That transaction ID should be " + + "visible in the list presented here. Once you found the correct transaction select that transaction here and continue.\n\n" + + "Sorry for the inconvenience but that error case should be happen very rare and in future we will try " + + "to find better ways to resolve it.", 10); GridPane.setMargin(label, new Insets(0, 0, 10, 0));