From 33f439f49a7a8da62b57e34883a85ba05eef79b8 Mon Sep 17 00:00:00 2001 From: Craig Raw Date: Fri, 19 Apr 2024 09:43:18 +0200 Subject: [PATCH] minor text changes --- .../com/sparrowwallet/sparrow/control/MixStatusCell.java | 5 +++++ src/main/java/com/sparrowwallet/sparrow/io/Samourai.java | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/sparrowwallet/sparrow/control/MixStatusCell.java b/src/main/java/com/sparrowwallet/sparrow/control/MixStatusCell.java index 5beed7f6..14d3952e 100644 --- a/src/main/java/com/sparrowwallet/sparrow/control/MixStatusCell.java +++ b/src/main/java/com/sparrowwallet/sparrow/control/MixStatusCell.java @@ -118,6 +118,11 @@ public class MixStatusCell extends TreeTableCell { Tooltip tt = new Tooltip(); String status = mixProgress.getMixStep().getMessage().replaceAll("_", " "); status = status.substring(0, 1).toUpperCase(Locale.ROOT) + status.substring(1).toLowerCase(Locale.ROOT); + if(mixProgress.getMixStep() == MixStep.REGISTER_INPUT) { + status += "\n\nThis progress is normal for one mixing UTXO per pool while waiting to be randomly selected for a mix.\n" + + "This may take hours or days, and time in the pool is generally more important than individual number of mixes.\n" + + "Each UTXO's anonymity set is dependent not only on its own mix count, but that of its peers as well."; + } tt.setText(status); setTooltip(tt); } else { diff --git a/src/main/java/com/sparrowwallet/sparrow/io/Samourai.java b/src/main/java/com/sparrowwallet/sparrow/io/Samourai.java index 7181eb08..3fe0eb7f 100644 --- a/src/main/java/com/sparrowwallet/sparrow/io/Samourai.java +++ b/src/main/java/com/sparrowwallet/sparrow/io/Samourai.java @@ -21,7 +21,7 @@ import java.util.Map; public class Samourai implements KeystoreFileImport { @Override public String getKeystoreImportDescription(int account) { - return "Import the wallet backup file samourai.txt exported from the Samourai app."; + return "Import the wallet backup file samourai.txt exported from the Samourai app. Note that see the full balance, several script types may need to imported in separate wallets."; } @Override