@@ -135,7 +135,7 @@ impl Psbt {
135135 /// An alias for [`extract_tx_fee_rate_limit`].
136136 ///
137137 /// [`extract_tx_fee_rate_limit`]: Psbt::extract_tx_fee_rate_limit
138- #[ allow( clippy:: result_large_err) ] // The PSBT returned in `SendingToomuch` is large.
138+ #[ allow( clippy:: result_large_err) ] // The PSBT returned in `SendingToomuch` is large.
139139 pub fn extract_tx ( self ) -> Result < Transaction , ExtractTxError > {
140140 self . internal_extract_tx_with_fee_rate_limit ( Self :: DEFAULT_MAX_FEE_RATE )
141141 }
@@ -147,7 +147,7 @@ impl Psbt {
147147 /// [`ExtractTxError`] variants will contain either the [`Psbt`] itself or the [`Transaction`]
148148 /// that was extracted. These can be extracted from the Errors in order to recover.
149149 /// See the error documentation for info on the variants. In general, it covers large fees.
150- #[ allow( clippy:: result_large_err) ] // The PSBT returned in `SendingToomuch` is large.
150+ #[ allow( clippy:: result_large_err) ] // The PSBT returned in `SendingToomuch` is large.
151151 pub fn extract_tx_fee_rate_limit ( self ) -> Result < Transaction , ExtractTxError > {
152152 self . internal_extract_tx_with_fee_rate_limit ( Self :: DEFAULT_MAX_FEE_RATE )
153153 }
@@ -159,7 +159,7 @@ impl Psbt {
159159 /// See [`extract_tx`].
160160 ///
161161 /// [`extract_tx`]: Psbt::extract_tx
162- #[ allow( clippy:: result_large_err) ] // The PSBT returned in `SendingToomuch` is large.
162+ #[ allow( clippy:: result_large_err) ] // The PSBT returned in `SendingToomuch` is large.
163163 pub fn extract_tx_with_fee_rate_limit (
164164 self ,
165165 max_fee_rate : FeeRate ,
@@ -187,7 +187,7 @@ impl Psbt {
187187 }
188188
189189 #[ inline]
190- #[ allow( clippy:: result_large_err) ] // The PSBT returned in `SendingToomuch` is large.
190+ #[ allow( clippy:: result_large_err) ] // The PSBT returned in `SendingToomuch` is large.
191191 fn internal_extract_tx_with_fee_rate_limit (
192192 self ,
193193 max_fee_rate : FeeRate ,
0 commit comments