rename trade wallets with short id and short uid

This commit is contained in:
woodser 2024-02-27 07:19:56 -05:00
parent 031883e5e3
commit 0c9a3ac0a4

View File

@ -795,7 +795,7 @@ public abstract class Trade implements Tradable, Model {
}
private String getWalletName() {
return MONERO_TRADE_WALLET_PREFIX + getId();
return MONERO_TRADE_WALLET_PREFIX + getShortId() + "_" + getShortUid();
}
public void checkAndVerifyDaemonConnection() {
@ -1894,6 +1894,10 @@ public abstract class Trade implements Tradable, Model {
return offer.getShortId();
}
public String getShortUid() {
return Utilities.getShortId(getUid());
}
public BigInteger getFrozenAmount() {
BigInteger sum = BigInteger.ZERO;
for (String keyImage : getSelf().getReserveTxKeyImages()) {