Manually update nightly version
While trying to use the `macro_use_imports` lint I found that there is a bug in last weeks nightly. It has been fixed already so lets update. Update to todays nightly compiler. Doing so causes some new linter warnings, for now we just allow them.
This commit is contained in:
parent
72823df014
commit
a4b9c196b1
|
@ -135,6 +135,7 @@ impl Psbt {
|
|||
/// An alias for [`extract_tx_fee_rate_limit`].
|
||||
///
|
||||
/// [`extract_tx_fee_rate_limit`]: Psbt::extract_tx_fee_rate_limit
|
||||
#[allow(clippy::result_large_err)] // The PSBT returned in `SendingToomuch` is large.
|
||||
pub fn extract_tx(self) -> Result<Transaction, ExtractTxError> {
|
||||
self.internal_extract_tx_with_fee_rate_limit(Self::DEFAULT_MAX_FEE_RATE)
|
||||
}
|
||||
|
@ -146,6 +147,7 @@ impl Psbt {
|
|||
/// [`ExtractTxError`] variants will contain either the [`Psbt`] itself or the [`Transaction`]
|
||||
/// that was extracted. These can be extracted from the Errors in order to recover.
|
||||
/// See the error documentation for info on the variants. In general, it covers large fees.
|
||||
#[allow(clippy::result_large_err)] // The PSBT returned in `SendingToomuch` is large.
|
||||
pub fn extract_tx_fee_rate_limit(self) -> Result<Transaction, ExtractTxError> {
|
||||
self.internal_extract_tx_with_fee_rate_limit(Self::DEFAULT_MAX_FEE_RATE)
|
||||
}
|
||||
|
@ -157,6 +159,7 @@ impl Psbt {
|
|||
/// See [`extract_tx`].
|
||||
///
|
||||
/// [`extract_tx`]: Psbt::extract_tx
|
||||
#[allow(clippy::result_large_err)] // The PSBT returned in `SendingToomuch` is large.
|
||||
pub fn extract_tx_with_fee_rate_limit(
|
||||
self,
|
||||
max_fee_rate: FeeRate,
|
||||
|
@ -184,6 +187,7 @@ impl Psbt {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
#[allow(clippy::result_large_err)] // The PSBT returned in `SendingToomuch` is large.
|
||||
fn internal_extract_tx_with_fee_rate_limit(
|
||||
self,
|
||||
max_fee_rate: FeeRate,
|
||||
|
|
|
@ -1 +1 @@
|
|||
nightly-2025-02-28
|
||||
nightly-2025-03-03
|
||||
|
|
Loading…
Reference in New Issue