From f8445b3f6facf0f2ceead2de3127eba4f0f743f0 Mon Sep 17 00:00:00 2001 From: Hardhat Chad Date: Wed, 17 Sep 2025 14:50:28 -0700 Subject: [PATCH] cli --- cli/src/main.rs | 3 +++ program/src/claim_seeker.rs | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index 34855e2..db69b14 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -51,6 +51,9 @@ async fn main() { "initialize_squares" => { initialize_squares(&rpc, &payer).await.unwrap(); } + "redeem" => { + redeem(&rpc, &payer).await.unwrap(); + } "reset" => { reset(&rpc, &payer).await.unwrap(); } diff --git a/program/src/claim_seeker.rs b/program/src/claim_seeker.rs index f397da3..6382980 100644 --- a/program/src/claim_seeker.rs +++ b/program/src/claim_seeker.rs @@ -16,7 +16,6 @@ pub fn process_claim_seeker(accounts: &[AccountInfo<'_>], _data: &[u8]) -> Progr }; signer_info.is_signer()?; mint_info.has_owner(&spl_token_2022::ID)?; - // token_info.as_associated_token_account(&signer_info.key, &mint_info.key)?; // Load mint. let mint_data = mint_info.try_borrow_data()?;