|
@@ -7,9 +7,9 @@ use solana_program::{
|
|
|
};
|
|
|
|
|
|
entrypoint!(process_instruction);
|
|
|
-fn process_instruction<'a>(
|
|
|
+fn process_instruction(
|
|
|
program_id: &Pubkey,
|
|
|
- accounts: &'a [AccountInfo<'a>],
|
|
|
+ accounts: &[AccountInfo],
|
|
|
instruction_data: &[u8],
|
|
|
) -> ProgramResult {
|
|
|
if let Err(error) = Processor::process(program_id, accounts, instruction_data) {
|