Skip to content

Commit 3dee4cc

Browse files
Remove redundant statement
1 parent 99be644 commit 3dee4cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/coinselection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ bool SelectCoinsBnB(std::vector<CInputCoin>& utxo_pool, const CAmount& target_va
115115
while (!curr_selection.empty() && !curr_selection.back()) {
116116
curr_selection.pop_back();
117117
curr_available_value += utxo_pool.at(curr_selection.size()).effective_value;
118-
};
118+
}
119119

120120
if (curr_selection.empty()) { // We have walked back to the first utxo and no branch is untraversed. All solutions searched
121121
break;

0 commit comments

Comments
 (0)