diff options
author | xiphon <xiphon@protonmail.com> | 2019-07-07 17:45:13 +0300 |
---|---|---|
committer | xiphon <xiphon@protonmail.com> | 2019-07-10 13:39:18 +0000 |
commit | 884df82db37d2f93151efc9b3dd165062444c7e6 (patch) | |
tree | 561ff6f5d0616240465926b8dd25614c558658c5 /src/wallet/api | |
parent | Merge pull request #5641 (diff) | |
download | monero-884df82db37d2f93151efc9b3dd165062444c7e6.tar.xz |
wallet: provide original address for outgoing transfers
Diffstat (limited to 'src/wallet/api')
-rw-r--r-- | src/wallet/api/transaction_history.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/transaction_history.cpp b/src/wallet/api/transaction_history.cpp index f4ad8b1f6..ad7029a3c 100644 --- a/src/wallet/api/transaction_history.cpp +++ b/src/wallet/api/transaction_history.cpp @@ -181,7 +181,7 @@ void TransactionHistoryImpl::refresh() // single output transaction might contain multiple transfers for (const auto &d: pd.m_dests) { - ti->m_transfers.push_back({d.amount, get_account_address_as_str(m_wallet->m_wallet->nettype(), d.is_subaddress, d.addr)}); + ti->m_transfers.push_back({d.amount, d.address(m_wallet->m_wallet->nettype(), pd.m_payment_id)}); } m_history.push_back(ti); } |