Skip to content

Commit

Permalink
Fix bogus conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
pronebird committed Jan 22, 2025
1 parent abe1bba commit 5d20a1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ impl fmt::Display for NymAddress {
#[cfg(feature = "nym-type-conversions")]
impl From<nym_gateway_directory::Recipient> for NymAddress {
fn from(value: nym_gateway_directory::Recipient) -> Self {
Self::new(value.gateway().to_base58_string())
Self::new(value.to_string())
}
}

Expand Down

0 comments on commit 5d20a1e

Please sign in to comment.