pub trait ExecuteRpc {
    // Required method
    fn execute_rpc(
        &mut self,
        command: &String,
        params: &UniValue,
        uri: &String
    ) -> UniValue;
}

Required Methods§

source

fn execute_rpc( &mut self, command: &String, params: &UniValue, uri: &String ) -> UniValue

Implementors§