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
+1 -1
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;