mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-04-03 12:49:04 +00:00
Adjust GetAll() Call
This commit is contained in:
parent
47f0047c9f
commit
c1f4052a05
1 changed files with 2 additions and 2 deletions
|
@ -80,7 +80,7 @@ void TransactionHistory::refresh(quint32 accountIndex)
|
|||
|
||||
m_pimpl->refresh();
|
||||
for (const auto i : m_pimpl->getAll()) {
|
||||
if (i->subaddrAccount() != accountIndex) {
|
||||
if (i.subaddrAccount() != accountIndex) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -174,7 +174,7 @@ QString TransactionHistory::writeCSV(quint32 accountIndex, QString out)
|
|||
|
||||
QReadLocker locker(&m_lock);
|
||||
for (const auto &tx : m_pimpl->getAll()) {
|
||||
if (tx->subaddrAccount() != accountIndex) {
|
||||
if (tx.subaddrAccount() != accountIndex) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue