From 00550f3014ae47076adddb7e4750dc4e64894ac3 Mon Sep 17 00:00:00 2001 From: Tom Trevethan Date: Wed, 11 Feb 2026 22:37:17 +0000 Subject: [PATCH] remove commented out redundant forward declaration (cherry picked from commit 9565b6064dbbb3733107a0ee03c8a52881773487) --- src/wallet/coinselection.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/wallet/coinselection.h b/src/wallet/coinselection.h index 3533381f26..2051816116 100644 --- a/src/wallet/coinselection.h +++ b/src/wallet/coinselection.h @@ -468,9 +468,6 @@ util::Result KnapsackSolver(std::vector& groups, c // Knapsack that delegates for every asset individually. util::Result KnapsackSolver(std::vector& groups, const CAmountMap& mapTargetValue, CAmount change_target, FastRandomContext& rng, int max_weight); - -// Get coin selection waste for a map of asset->amount. -// [[nodiscard]] CAmount GetSelectionWaste(const std::set& inputs, CAmount change_cost, const CAmountMap& target_map, bool use_effective_value); } // namespace wallet #endif // BITCOIN_WALLET_COINSELECTION_H