From 90e321abd0aebd091e910e18b17943e96635a670 Mon Sep 17 00:00:00 2001 From: m2049r Date: Thu, 16 Sep 2021 00:09:08 +0200 Subject: [PATCH] fix typo which breaks pool tx being stored properly --- src/wallet/api/transaction_history.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/wallet/api/transaction_history.cpp b/src/wallet/api/transaction_history.cpp index 7a9e116b5..600a5e8fa 100644 --- a/src/wallet/api/transaction_history.cpp +++ b/src/wallet/api/transaction_history.cpp @@ -233,7 +233,7 @@ void TransactionHistoryImpl::refresh() ti->m_timestamp = pd.m_timestamp; ti->m_confirmations = 0; - for (const auto &d : pd.m_dests) { + for (const auto &d : pd.m_dests) { ti->m_transfers.push_back({d.amount, d.address(m_wallet->m_wallet->nettype(), pd.m_payment_id)}); } @@ -274,4 +274,3 @@ void TransactionHistoryImpl::refresh() } } // namespace -}