mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
Use lockupTxId instead of uid
This commit is contained in:
parent
18a3f1e5fe
commit
acf26482dc
@ -355,13 +355,12 @@ public class ProposalDisplay {
|
||||
confiscateBondComboBox.setConverter(new StringConverter<>() {
|
||||
@Override
|
||||
public String toString(Bond bond) {
|
||||
String bondDetails;
|
||||
String details = " (" + Res.get("dao.bond.table.column.lockupTxId") + ": " + bond.getLockupTxId() + ")";
|
||||
if (bond instanceof BondedRole) {
|
||||
bondDetails = bond.getBondedAsset().getDisplayString();
|
||||
return bond.getBondedAsset().getDisplayString() + details;
|
||||
} else {
|
||||
bondDetails = Res.get("dao.bond.bondedReputation");
|
||||
return Res.get("dao.bond.bondedReputation") + details;
|
||||
}
|
||||
return bondDetails + " (" + Res.get("shared.id") + ": " + bond.getBondedAsset().getUid() + ")";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user