From 1484229cb45812dbb8be30ab12f756ec6934fb6b Mon Sep 17 00:00:00 2001 From: Hardhat Chad Date: Wed, 15 Oct 2025 13:06:28 -0700 Subject: [PATCH] cleanup --- program/src/deposit.rs | 2 -- program/src/withdraw.rs | 2 -- 2 files changed, 4 deletions(-) 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.