mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-06 05:34:50 -04:00
remove mining fee from locked funds in MS for locked funds display
This commit is contained in:
parent
ae65561623
commit
afe009b303
6 changed files with 8 additions and 6 deletions
|
@ -253,7 +253,7 @@ public class LockedView extends ActivatableView<VBox, Void> {
|
|||
details = "-";
|
||||
}
|
||||
|
||||
field = new HyperlinkWithIcon(details + " (Locked in trade (MultiSig))",
|
||||
field = new HyperlinkWithIcon("Locked in trade with ID: " + details + " (MultiSig)",
|
||||
AwesomeIcon.INFO_SIGN);
|
||||
field.setOnAction(event -> openDetailPopup(item));
|
||||
field.setTooltip(new Tooltip("Open popup for details"));
|
||||
|
|
|
@ -252,7 +252,7 @@ public class ReservedView extends ActivatableView<VBox, Void> {
|
|||
details = "-";
|
||||
}
|
||||
|
||||
field = new HyperlinkWithIcon(details + " (Reserved in offer (local wallet))",
|
||||
field = new HyperlinkWithIcon("Reserved in offer with ID: " + details + " (local wallet)",
|
||||
AwesomeIcon.INFO_SIGN);
|
||||
field.setOnAction(event -> openDetailPopup(item));
|
||||
field.setTooltip(new Tooltip("Open popup for details"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue