1 2 3 4 5 6 7 8
macro_rules! try_precheck { ($response:expr) => { match $response.get_nodeTransactionPrecheckCode().into() { crate::Status::Ok => Ok($response), code => return Err(crate::ErrorKind::PreCheck(code))?, } }; }