1use crate::Error; 2 3pub type RPCResult<T> = Result<T, Error<String, serde_json::Value>>; 4pub type RPCError = Error<String, serde_json::Value>;