aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2019-07-07 17:45:13 +0300
committerxiphon <xiphon@protonmail.com>2019-07-10 13:39:18 +0000
commit884df82db37d2f93151efc9b3dd165062444c7e6 (patch)
tree561ff6f5d0616240465926b8dd25614c558658c5 /src/wallet/api
parentMerge pull request #5641 (diff)
downloadmonero-884df82db37d2f93151efc9b3dd165062444c7e6.tar.xz
wallet: provide original address for outgoing transfers
Diffstat (limited to 'src/wallet/api')
-rw-r--r--src/wallet/api/transaction_history.cpp2
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);
}