Remove unneeded feature gate

We can use the `parse::hex_remove_optional_prefix` now without the
feature gate.
This commit is contained in:
Tobin C. Harding 2024-11-01 17:49:13 +11:00
parent 88f6621e30
commit ff20249bdc
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 3 deletions

View File

@ -6,9 +6,7 @@ use core::fmt;
use internals::error::InputString;
use crate::parse::ParseIntError;
#[cfg(feature = "alloc")]
use crate::parse;
use crate::parse::{self, ParseIntError};
/// The Threshold for deciding whether a lock time value is a height or a time (see [Bitcoin Core]).
///