This commit is contained in:
Hardhat Chad
2025-09-28 18:28:19 -07:00
parent 6c227d9808
commit e42a12c8ba
3 changed files with 27 additions and 31 deletions

View File

@@ -1,6 +1,6 @@
use ore_api::{
consts::{MINER, SEEKER, STAKE},
state::{Miner, Seeker, Stake},
consts::{SEEKER, STAKE},
state::{Seeker, Stake},
};
use solana_program::pubkey;
use steel::*;

View File

@@ -71,7 +71,6 @@ pub fn process_instruction(
// Seeker
OreInstruction::ClaimSeeker => process_claim_seeker(accounts, data)?,
OreInstruction::MigrateMiner => process_migrate_miner(accounts, data)?,
_ => return Err(ProgramError::InvalidInstructionData),
}
Ok(())