macro_rules! rpc_request {
($state:expr, $request:expr) => { ... };
}Expand description
Sends an RPC request, returning an error if the channel was dropped.
Returns Result<T, AppError> where T is the RPC response type.
macro_rules! rpc_request {
($state:expr, $request:expr) => { ... };
}Sends an RPC request, returning an error if the channel was dropped.
Returns Result<T, AppError> where T is the RPC response type.