diff --git a/src/psbt/mod.rs b/src/psbt/mod.rs index 2bda4852..1b4da364 100644 --- a/src/psbt/mod.rs +++ b/src/psbt/mod.rs @@ -17,6 +17,7 @@ pub trait PsbtUtils { } impl PsbtUtils for Psbt { + #[allow(clippy::all)] // We want to allow `manual_map` but it is too new. fn get_utxo_for(&self, input_index: usize) -> Option { let tx = &self.global.unsigned_tx;