Function solana_program::program::invoke_signed_unchecked
source · [−]pub fn invoke_signed_unchecked(
instruction: &Instruction,
account_infos: &[AccountInfo<'_>],
signers_seeds: &[&[&[u8]]]
) -> ProgramResult
Expand description
Invoke a cross-program instruction with program signatures but don’t check RefCell handling.
Note:
- The missing checks ensured that the invocation doesn’t violate the borrow
rules of the
AccountInfo
fields that are wrapped inRefCell
s. To include the checks callinvoke_signed
instead.