pub trait ValidateCurrency<CurrencyId> {
// Required methods
fn validate_pooled_currency(a: &[CurrencyId]) -> bool;
fn validate_pool_lp_currency(a: CurrencyId) -> bool;
}
pub trait ValidateCurrency<CurrencyId> {
// Required methods
fn validate_pooled_currency(a: &[CurrencyId]) -> bool;
fn validate_pool_lp_currency(a: CurrencyId) -> bool;
}