From 72c438aaa2012595079e1b53bb2b97bb4782ca7c Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Tue, 19 Mar 2024 15:37:12 -0500 Subject: [PATCH] docs(wallet): remove unneeded coin_select() database param --- crates/bdk/src/wallet/coin_selection.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/bdk/src/wallet/coin_selection.rs b/crates/bdk/src/wallet/coin_selection.rs index 5122a1493..f2e4324cb 100644 --- a/crates/bdk/src/wallet/coin_selection.rs +++ b/crates/bdk/src/wallet/coin_selection.rs @@ -219,8 +219,6 @@ impl CoinSelectionResult { pub trait CoinSelectionAlgorithm: core::fmt::Debug { /// Perform the coin selection /// - /// - `database`: a reference to the wallet's database that can be used to lookup additional - /// details for a specific UTXO /// - `required_utxos`: the utxos that must be spent regardless of `target_amount` with their /// weight cost /// - `optional_utxos`: the remaining available utxos to satisfy `target_amount` with their