From: thunderbiscuit Date: Thu, 5 May 2022 19:15:04 +0000 (-0400) Subject: Fix typo in docs for TxBuilder allow_shrinking method X-Git-Tag: v0.19.0~13^2 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/%22example_cli/enum.Commands.html/struct.CommandStringError.html?a=commitdiff_plain;h=4628a10191f451a7b0ade674e9f8568bf695e49c;p=bdk Fix typo in docs for TxBuilder allow_shrinking method --- diff --git a/src/wallet/tx_builder.rs b/src/wallet/tx_builder.rs index c45e619c..f23d62a5 100644 --- a/src/wallet/tx_builder.rs +++ b/src/wallet/tx_builder.rs @@ -615,7 +615,7 @@ impl<'a, D: BatchDatabase, Cs: CoinSelectionAlgorithm> TxBuilder<'a, D, Cs, C // methods supported only by bump_fee impl<'a, D: BatchDatabase> TxBuilder<'a, D, DefaultCoinSelectionAlgorithm, BumpFee> { - /// Explicitly tells the wallet that it is allowed to reduce the fee of the output matching this + /// Explicitly tells the wallet that it is allowed to reduce the amount of the output matching this /// `script_pubkey` in order to bump the transaction fee. Without specifying this the wallet /// will attempt to find a change output to shrink instead. ///