1pub type CfxResult<T> = Result<T, Error>; 2 3#[derive(thiserror::Error, Debug)] 4pub enum Error { 5 #[error(transparent)] 6 ReqwestError(#[from] reqwest::Error), 7 #[error("{0}")] 8 RpcResError(String), 9}