fix trade wallet name

This commit is contained in:
woodser 2024-02-28 06:56:00 -05:00
parent aaa7d59ba6
commit 623196bcb0

View File

@ -770,7 +770,7 @@ public abstract class Trade implements Tradable, Model {
public boolean walletExists() {
synchronized (walletLock) {
return xmrWalletService.walletExists(MONERO_TRADE_WALLET_PREFIX + getId());
return xmrWalletService.walletExists(getWalletName());
}
}