mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
minor text changes
This commit is contained in:
parent
d68ab40c94
commit
33f439f49a
2 changed files with 6 additions and 1 deletions
|
@ -118,6 +118,11 @@ public class MixStatusCell extends TreeTableCell<Entry, UtxoEntry.MixStatus> {
|
||||||
Tooltip tt = new Tooltip();
|
Tooltip tt = new Tooltip();
|
||||||
String status = mixProgress.getMixStep().getMessage().replaceAll("_", " ");
|
String status = mixProgress.getMixStep().getMessage().replaceAll("_", " ");
|
||||||
status = status.substring(0, 1).toUpperCase(Locale.ROOT) + status.substring(1).toLowerCase(Locale.ROOT);
|
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);
|
tt.setText(status);
|
||||||
setTooltip(tt);
|
setTooltip(tt);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -21,7 +21,7 @@ import java.util.Map;
|
||||||
public class Samourai implements KeystoreFileImport {
|
public class Samourai implements KeystoreFileImport {
|
||||||
@Override
|
@Override
|
||||||
public String getKeystoreImportDescription(int account) {
|
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
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue