Skip to content

Commit

Permalink
Removing warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
blockiosaurus committed Feb 17, 2024
1 parent 5d5d808 commit 9c28bb0
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions programs/mpl-asset/src/processor/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
use crate::instruction::MplAssetInstruction;
use borsh::{BorshDeserialize, BorshSerialize};
use solana_program::{
account_info::AccountInfo, entrypoint::ProgramResult, msg, program_error::ProgramError,
pubkey::Pubkey,
};
use solana_program::{account_info::AccountInfo, entrypoint::ProgramResult, msg, pubkey::Pubkey};

mod create;
pub(crate) use create::*;
Expand Down Expand Up @@ -87,6 +84,5 @@ pub fn process_instruction<'a>(
msg!("Instruction: Decompress");
decompress(accounts, args)
}
_ => Err(ProgramError::InvalidInstructionData),
}
}

0 comments on commit 9c28bb0

Please sign in to comment.