diff --git a/chain-extensions/types/unified-accounts/src/lib.rs b/chain-extensions/types/unified-accounts/src/lib.rs index e4de735925..7371e3a9e0 100644 --- a/chain-extensions/types/unified-accounts/src/lib.rs +++ b/chain-extensions/types/unified-accounts/src/lib.rs @@ -37,6 +37,10 @@ pub enum Command { #[derive(Debug, Copy, Clone, PartialEq, Eq, Encode, Decode, MaxEncodedLen)] #[cfg_attr(feature = "std", derive(scale_info::TypeInfo))] pub enum UnifiedAddress { + /// The address fetched from the mappings and the account + /// is unified Mapped(T), + /// The default address associated with account as there + /// is no mapping found and accounts are not unified Default(T), }