solana/programs/bpf/rust/dup_accounts/src/lib.rs

53 lines
1.5 KiB
Rust
Raw Normal View History

//! @brief Example Rust-based BPF program that tests duplicate accounts passed via accounts
extern crate solana_sdk;
use solana_sdk::{
account_info::AccountInfo, entrypoint, entrypoint::SUCCESS, info, pubkey::Pubkey,
};
entrypoint!(process_instruction);
2020-01-24 13:41:14 -08:00
fn process_instruction(
_program_id: &Pubkey,
accounts: &mut [AccountInfo],
instruction_data: &[u8],
) -> u32 {
const FAILURE: u32 = 1;
2020-01-24 13:41:14 -08:00
match instruction_data[0] {
1 => {
info!("modify first account data");
2020-01-24 14:34:59 -08:00
accounts[2].borrow_mut().data[0] = 1;
}
2 => {
info!("modify first account data");
2020-01-24 14:34:59 -08:00
accounts[3].borrow_mut().data[0] = 2;
}
3 => {
info!("modify both account data");
2020-01-24 14:34:59 -08:00
accounts[2].borrow_mut().data[0] += 1;
accounts[3].borrow_mut().data[0] += 2;
}
4 => {
info!("modify first account lamports");
2020-01-24 14:34:59 -08:00
*accounts[1].borrow_mut().lamports -= 1;
*accounts[2].borrow_mut().lamports += 1;
}
5 => {
info!("modify first account lamports");
2020-01-24 14:34:59 -08:00
*accounts[1].borrow_mut().lamports -= 2;
*accounts[3].borrow_mut().lamports += 2;
}
6 => {
info!("modify both account lamports");
2020-01-24 14:34:59 -08:00
*accounts[1].borrow_mut().lamports -= 3;
*accounts[2].borrow_mut().lamports += 1;
*accounts[3].borrow_mut().lamports += 2;
}
_ => {
info!("Unrecognized command");
return FAILURE;
}
}
SUCCESS
}