From b96e07d161e3125403c96bf3140d472b29cb29df Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 27 Sep 2021 09:01:43 -0700 Subject: [PATCH] Drop 'With' from TransferRangeProof/TransferValidityProof --- programs/zk-token-proof/src/lib.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/programs/zk-token-proof/src/lib.rs b/programs/zk-token-proof/src/lib.rs index 73417e5dbc..96df4cdc6a 100644 --- a/programs/zk-token-proof/src/lib.rs +++ b/programs/zk-token-proof/src/lib.rs @@ -44,13 +44,13 @@ pub fn process_instruction( ic_msg!(invoke_context, "VerifyWithdraw"); verify::(input, invoke_context) } - ProofInstruction::VerifyTransferWithRangeProofData => { - ic_msg!(invoke_context, "VerifyTransferWithRangeProofData"); - verify::(input, invoke_context) + ProofInstruction::VerifyTransferRangeProofData => { + ic_msg!(invoke_context, "VerifyTransferRangeProofData"); + verify::(input, invoke_context) } - ProofInstruction::VerifyTransferWithValidityProofData => { - ic_msg!(invoke_context, "VerifyTransferWithValidityProofData"); - verify::(input, invoke_context) + ProofInstruction::VerifyTransferValidityProofData => { + ic_msg!(invoke_context, "VerifyTransferValidityProofData"); + verify::(input, invoke_context) } } }