diff --git a/programs/zk-token-proof/src/lib.rs b/programs/zk-token-proof/src/lib.rs index e9f88bcff9a19e..a90d321212c486 100644 --- a/programs/zk-token-proof/src/lib.rs +++ b/programs/zk-token-proof/src/lib.rs @@ -346,7 +346,7 @@ declare_process_instruction!(Entrypoint, 0, |invoke_context| { invoke_context .consume_checked(VERIFY_GROUPED_CIPHERTEXT_3_HANDLES_VALIDITY_COMPUTE_UNITS) .map_err(|_| InstructionError::ComputationalBudgetExceeded)?; - ic_msg!(invoke_context, "VerifyGroupedCiphertext2HandlesValidity"); + ic_msg!(invoke_context, "VerifyGroupedCiphertext3HandlesValidity"); process_verify_proof::< GroupedCiphertext3HandlesValidityProofData, GroupedCiphertext3HandlesValidityProofContext, @@ -358,7 +358,7 @@ declare_process_instruction!(Entrypoint, 0, |invoke_context| { .map_err(|_| InstructionError::ComputationalBudgetExceeded)?; ic_msg!( invoke_context, - "VerifyBatchedGroupedCiphertext2HandlesValidity" + "VerifyBatchedGroupedCiphertext3HandlesValidity" ); process_verify_proof::< BatchedGroupedCiphertext3HandlesValidityProofData,