From fbc80c533505f359a3ce81bb7e220fea23fba24c Mon Sep 17 00:00:00 2001 From: Tom French Date: Tue, 9 May 2023 18:37:33 +0100 Subject: [PATCH] chore!: remove `OpcodeResolutionError::UnexpectedOpcode` --- acvm/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/acvm/src/lib.rs b/acvm/src/lib.rs index d28b6d21f..e1b6486f6 100644 --- a/acvm/src/lib.rs +++ b/acvm/src/lib.rs @@ -46,8 +46,6 @@ pub enum OpcodeResolutionError { UnsupportedBlackBoxFunc(BlackBoxFunc), #[error("could not satisfy all constraints")] UnsatisfiedConstrain, - #[error("unexpected opcode, expected {0}, but got {1}")] - UnexpectedOpcode(&'static str, BlackBoxFunc), #[error("expected {0} inputs for function {1}, but got {2}")] IncorrectNumFunctionArguments(usize, BlackBoxFunc, usize), #[error("failed to solve blackbox function: {0}, reason: {1}")]