aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-11-06 10:36:08 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-11-06 10:36:08 +0000
commiteb194925eca95b35a79b6260bc1bfb27c30f90d6 (patch)
tree9166e4129db381562d2fe16e93653b429fe86db4 /src/wallet/api
parentMerge pull request #1272 (diff)
downloadmonero-eb194925eca95b35a79b6260bc1bfb27c30f90d6.tar.xz
wallet2_api: do not copy the whole pending tx when iterating
Diffstat (limited to 'src/wallet/api')
-rw-r--r--src/wallet/api/pending_transaction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/pending_transaction.cpp b/src/wallet/api/pending_transaction.cpp
index 26ce9fc7e..f377e80b6 100644
--- a/src/wallet/api/pending_transaction.cpp
+++ b/src/wallet/api/pending_transaction.cpp
@@ -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;