wallet2_api: do not copy the whole pending tx when iterating
This commit is contained in:
parent
d51f1af75f
commit
eb194925ec
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue