mirror of
https://github.com/monero-project/monero.git
synced 2025-12-22 15:16:40 -08:00
wallet2_api: do not copy the whole pending tx when iterating
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user