feat: rename transaction eval and add error enum

This commit is contained in:
rvcas
2022-09-18 15:35:10 -04:00
parent 68fc0f643e
commit 9e280f9cb5
8 changed files with 34 additions and 26 deletions

View File

@@ -0,0 +1,7 @@
use crate::machine;
#[derive(thiserror::Error, Debug)]
pub enum Error {
#[error("Runtime error")]
Machine(#[from] machine::Error),
}