Fix program account rent exemption (#14176)

This commit is contained in:
Jack May
2020-12-17 01:02:31 -08:00
committed by GitHub
parent dc0f5adc36
commit 593ad80954
4 changed files with 103 additions and 10 deletions

View File

@ -8,9 +8,10 @@ use solana_program::{
entrypoint!(process_instruction);
fn process_instruction(
_program_id: &Pubkey,
_accounts: &[AccountInfo],
accounts: &[AccountInfo],
_instruction_data: &[u8],
) -> ProgramResult {
msg!("Upgradeable program");
assert_eq!(accounts.len(), 2);
Err(42.into())
}