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

A trait representing a client that can perform online actions.

Required Methods§

source

fn rpc(&self) -> &Rpc<T>

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

Implementors§