diff --git a/program/src/deposit.rs b/program/src/deposit.rs index 793c190..03bcc93 100644 --- a/program/src/deposit.rs +++ b/program/src/deposit.rs @@ -3,8 +3,6 @@ use solana_program::log::sol_log; use spl_token::amount_to_ui_amount; use steel::*; -use crate::AUTHORIZED_ACCOUNTS; - /// Deposits ORE into the staking contract. pub fn process_deposit(accounts: &[AccountInfo<'_>], data: &[u8]) -> ProgramResult { // Parse data. diff --git a/program/src/withdraw.rs b/program/src/withdraw.rs index 0537bcc..41b44c3 100644 --- a/program/src/withdraw.rs +++ b/program/src/withdraw.rs @@ -3,8 +3,6 @@ use solana_program::log::sol_log; use spl_token::amount_to_ui_amount; use steel::*; -use crate::AUTHORIZED_ACCOUNTS; - /// Withdraws ORE from the staking contract. pub fn process_withdraw(accounts: &[AccountInfo<'_>], data: &[u8]) -> ProgramResult { // Parse data.