pub trait IdentifyVariant {
    fn is_tidechain(&self) -> bool;
    fn is_lagoon(&self) -> bool;
    fn is_dev(&self) -> bool;
}
Expand description

Can be called for a Configuration to check if it is a configuration for the Lagoon network.

Required Methods§

Returns if this is a configuration for the Tidechain network.

Returns if this is a configuration for the Lagoon network.

Returns true if this configuration is for a development network.

Implementations on Foreign Types§

Implementors§