From 29517041ef2c32a9c11163f6f1520e68c83bfa32 Mon Sep 17 00:00:00 2001 From: Hardhat Chad Date: Fri, 12 Jul 2024 00:44:45 +0000 Subject: [PATCH] remove mint from instruction builder --- api/src/instruction.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/api/src/instruction.rs b/api/src/instruction.rs index 5d00d43..8c1f41c 100644 --- a/api/src/instruction.rs +++ b/api/src/instruction.rs @@ -197,7 +197,6 @@ pub fn claim(signer: Pubkey, beneficiary: Pubkey, amount: u64) -> Instruction { accounts: vec![ AccountMeta::new(signer, true), AccountMeta::new(beneficiary, false), - AccountMeta::new(MINT_ADDRESS, false), AccountMeta::new(proof, false), AccountMeta::new_readonly(TREASURY_ADDRESS, false), AccountMeta::new(treasury_tokens, false),