wallet2_api: do not copy the whole pending tx when iterating

This commit is contained in:
moneromooo-monero 2016-11-06 10:36:08 +00:00
parent d51f1af75f
commit eb194925ec
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -128,7 +128,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;