Merge pull request #1300

eb19492 wallet2_api: do not copy the whole pending tx when iterating (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2016-11-08 22:48:04 +02:00
commit c57ce06a97
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -136,7 +136,7 @@ uint64_t PendingTransactionImpl::dust() const
uint64_t PendingTransactionImpl::fee() const
{
uint64_t result = 0;
for (const auto ptx : m_pending_tx) {
for (const auto &ptx : m_pending_tx) {
result += ptx.fee;
}
return result;