Add WithdrawData proof program plumbing
This commit is contained in:
parent
8b15d7bc28
commit
6ba3f4dc6d
|
@ -40,5 +40,9 @@ pub fn process_instruction(
|
||||||
ic_msg!(invoke_context, "VerifyCloseAccount");
|
ic_msg!(invoke_context, "VerifyCloseAccount");
|
||||||
verify::<CloseAccountData>(input, invoke_context)
|
verify::<CloseAccountData>(input, invoke_context)
|
||||||
}
|
}
|
||||||
|
ProofInstruction::VerifyWithdraw => {
|
||||||
|
ic_msg!(invoke_context, "VerifyWithdraw");
|
||||||
|
verify::<WithdrawData>(input, invoke_context)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue