mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-10 23:50:10 -04:00
fix bugs resetting trade payout address entries
This commit is contained in:
parent
aa36518f69
commit
900d3a91e1
6 changed files with 71 additions and 73 deletions
|
@ -104,10 +104,10 @@ class DepositListItem {
|
|||
usage = numTxsWithOutputs == 0 ? Res.get("funds.deposit.unused") : Res.get("funds.deposit.usedInTx", numTxsWithOutputs);
|
||||
break;
|
||||
case OFFER_FUNDING:
|
||||
usage = Res.get("funds.deposit.offerFunding");
|
||||
usage = Res.get("funds.deposit.offerFunding", addressEntry.getShortOfferId());
|
||||
break;
|
||||
case TRADE_PAYOUT:
|
||||
usage = Res.get("funds.deposit.tradePayout");
|
||||
usage = Res.get("funds.deposit.tradePayout", addressEntry.getShortOfferId());
|
||||
break;
|
||||
default:
|
||||
usage = addressEntry.getContext().toString();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue