Allow deprecated function call

We have a deprecated function call because of the MSRV, tell clippy to
ignore it.
This commit is contained in:
Tobin Harding 2022-04-04 16:20:11 +10:00
parent cb4d34fd40
commit 29843c41ef
1 changed files with 1 additions and 1 deletions

View File

@ -166,6 +166,7 @@ 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;
@ -183,7 +184,6 @@ impl FromStr for PsbtSighashType {
}
// We accept non-standard sighash values.
// TODO: Swap `trim_left_matches` for `trim_start_matches` once MSRV >= 1.30.
if let Ok(inner) = u32::from_str_radix(s.trim_left_matches("0x"), 16) {
return Ok(PsbtSighashType { inner });
}