mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-12-23 03:59:36 +00:00
show multisig deposit destination address in transactions view #982
This commit is contained in:
parent
99f41e0feb
commit
37af7e5338
1 changed files with 1 additions and 0 deletions
|
@ -122,6 +122,7 @@ class TransactionsListItem {
|
||||||
if (trade.getSelf().getDepositTxHash() != null &&
|
if (trade.getSelf().getDepositTxHash() != null &&
|
||||||
trade.getSelf().getDepositTxHash().equals(txId)) {
|
trade.getSelf().getDepositTxHash().equals(txId)) {
|
||||||
details = Res.get("funds.tx.multiSigDeposit", tradeId);
|
details = Res.get("funds.tx.multiSigDeposit", tradeId);
|
||||||
|
addressString = trade.getProcessModel().getMultisigAddress();
|
||||||
} else if (trade.getPayoutTxId() != null &&
|
} else if (trade.getPayoutTxId() != null &&
|
||||||
trade.getPayoutTxId().equals(txId)) {
|
trade.getPayoutTxId().equals(txId)) {
|
||||||
details = Res.get("funds.tx.multiSigPayout", tradeId);
|
details = Res.get("funds.tx.multiSigPayout", tradeId);
|
||||||
|
|
Loading…
Reference in a new issue