diff --git a/programs/zk-token-proof/src/lib.rs b/programs/zk-token-proof/src/lib.rs index 2d73f3fcce..091d75ea16 100644 --- a/programs/zk-token-proof/src/lib.rs +++ b/programs/zk-token-proof/src/lib.rs @@ -40,5 +40,9 @@ pub fn process_instruction( ic_msg!(invoke_context, "VerifyCloseAccount"); verify::(input, invoke_context) } + ProofInstruction::VerifyWithdraw => { + ic_msg!(invoke_context, "VerifyWithdraw"); + verify::(input, invoke_context) + } } }