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()?;