|
@@ -38,7 +38,7 @@ macro_rules! BinaryId {
|
|
|
}
|
|
|
|
|
|
impl std::str::FromStr for $id {
|
|
|
- type Err = crate::id::Error;
|
|
|
+ type Err = $crate::id::Error;
|
|
|
fn from_str(value: &str) -> Result<Self, Self::Err> {
|
|
|
Ok(Self::try_from(value).unwrap_or_else(|_| {
|
|
|
use sha2::Digest;
|
|
@@ -73,7 +73,7 @@ macro_rules! BinaryId {
|
|
|
}
|
|
|
|
|
|
impl TryFrom<&str> for $id {
|
|
|
- type Error = crate::id::Error;
|
|
|
+ type Error = $crate::id::Error;
|
|
|
fn try_from(value: &str) -> Result<Self, Self::Error> {
|
|
|
let (hrp, bytes) = bech32::decode(&value)?;
|
|
|
let hrp = hrp.to_string();
|