From 3a0097ba4966d122f067e7379e752d01296d260d Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 21 Apr 2022 11:18:47 +1000 Subject: [PATCH] Use trim_start_matches Now that we are bumping the MSRV to greater than 1.30 we can use `trim_start_matches`. Use `trim_start_matches` and remove the clippy directive. --- src/util/psbt/map/input.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/util/psbt/map/input.rs b/src/util/psbt/map/input.rs index 1aca4bfd..113f0626 100644 --- a/src/util/psbt/map/input.rs +++ b/src/util/psbt/map/input.rs @@ -166,7 +166,6 @@ impl fmt::Display for PsbtSighashType { } } -#[allow(deprecated)] // TODO: Swap `trim_left_matches` for `trim_start_matches` once MSRV >= 1.30. impl FromStr for PsbtSighashType { type Err = SighashTypeParseError; @@ -184,7 +183,7 @@ impl FromStr for PsbtSighashType { } // We accept non-standard sighash values. - if let Ok(inner) = u32::from_str_radix(s.trim_left_matches("0x"), 16) { + if let Ok(inner) = u32::from_str_radix(s.trim_start_matches("0x"), 16) { return Ok(PsbtSighashType { inner }); }