aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-07-17 19:23:46 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2018-07-18 09:39:31 +0200
commit3dee4cc5098c6e9bcc13df9d6277478c8273a6cd (patch)
treeb07e7b50df72d8ee832eb53ee423b84488979a1e /src/wallet
parent99be644966c63e9917161f97574905551e44360f (diff)
downloadbitcoin-3dee4cc5098c6e9bcc13df9d6277478c8273a6cd.tar.xz
Remove redundant statement
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/coinselection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/coinselection.cpp b/src/wallet/coinselection.cpp
index a403411e5b..78258cdec2 100644
--- a/src/wallet/coinselection.cpp
+++ b/src/wallet/coinselection.cpp
@@ -115,7 +115,7 @@ bool SelectCoinsBnB(std::vector<CInputCoin>& utxo_pool, const CAmount& target_va
while (!curr_selection.empty() && !curr_selection.back()) {
curr_selection.pop_back();
curr_available_value += utxo_pool.at(curr_selection.size()).effective_value;
- };
+ }
if (curr_selection.empty()) { // We have walked back to the first utxo and no branch is untraversed. All solutions searched
break;