| 15 | //Errors that are returned from the Miden processor during execution. |
| 16 | #[derive(Debug)] |
| 17 | pub enum MidenError { |
| 18 | AssemblyError(miden_assembly::AssemblyError), |
| 19 | ExecutionError(ExecutionError), |
| 20 | } |
| 21 | |
| 22 | #[ignore] |
| 23 | #[test] |
nothing calls this directly
no outgoing calls
no test coverage detected