mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
fix typo which breaks pool tx being stored properly
This commit is contained in:
parent
a053814e71
commit
90e321abd0
1 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue