diff --git a/substrate/primitives/core/src/crypto.rs b/substrate/primitives/core/src/crypto.rs index c073862f29e06eadbc92b4e4466714343fd9b24f..6301600921ac32bc3cace163eb2cdad591379c5a 100644 --- a/substrate/primitives/core/src/crypto.rs +++ b/substrate/primitives/core/src/crypto.rs @@ -18,6 +18,7 @@ //! Cryptographic utilities. // end::description[] +use crate::{sr25519, ed25519}; use sp_std::hash::Hash; use sp_std::vec::Vec; #[cfg(feature = "std")] @@ -615,6 +616,18 @@ impl From<AccountId32> for [u8; 32] { } } +impl From<sr25519::Public> for AccountId32 { + fn from(k: sr25519::Public) -> Self { + k.0.into() + } +} + +impl From<ed25519::Public> for AccountId32 { + fn from(k: ed25519::Public) -> Self { + k.0.into() + } +} + #[cfg(feature = "std")] impl std::fmt::Display for AccountId32 { fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {