Add program id spoof tests (#13866)

This commit is contained in:
Jack May
2020-11-30 13:06:11 -08:00
committed by GitHub
parent 6cf6cd2fba
commit b47bd0a296
12 changed files with 7036 additions and 33 deletions

View File

@@ -0,0 +1,19 @@
use solana_program::{
account_info::AccountInfo, entrypoint, entrypoint::ProgramResult, pubkey::Pubkey,
};
entrypoint!(process_instruction);
fn process_instruction(
_program_id: &Pubkey,
accounts: &[AccountInfo],
_instruction_data: &[u8],
) -> ProgramResult {
let from = &accounts[0];
let to = &accounts[1];
let to_balance = to.lamports();
**to.lamports.borrow_mut() = to_balance + from.lamports();
**from.lamports.borrow_mut() = 0u64;
Ok(())
}