pub trait HasLocalAssetRepresentation<AssetRegistry> {
// Required method
fn is_local_representation_of(
&self,
variant_currency: &Self
) -> Result<bool, DispatchError>;
}
Expand description
Checks whether an asset is the local representation of another one
Required Methods§
fn is_local_representation_of( &self, variant_currency: &Self ) -> Result<bool, DispatchError>
Object Safety§
This trait is not object safe.