pub type TxResult = Result<(), Error>;
enum TxResult { Ok(()), Err(Error), }
Contains the success value
Contains the error value