pub trait OnlineClientT<T: Config>: OfflineClientT<T> {
    fn rpc(&self) -> &Rpc<T>;
}
Expand description

A trait representing a client that can perform online actions.

Required Methods§

Return an RPC client that can be used to communicate with a node.

Implementors§