diff --git a/interface/src/instruction.rs b/interface/src/instruction.rs index 40b4337a..0dc470e5 100644 --- a/interface/src/instruction.rs +++ b/interface/src/instruction.rs @@ -231,12 +231,12 @@ pub enum TokenInstruction<'a> { /// Accounts expected by this instruction: /// /// * Single owner - /// 0. `[writable]` The account to freeze. + /// 0. `[writable]` The account to thaw. /// 1. `[]` The token mint. /// 2. `[signer]` The mint freeze authority. /// /// * Multisignature owner - /// 0. `[writable]` The account to freeze. + /// 0. `[writable]` The account to thaw. /// 1. `[]` The token mint. /// 2. `[]` The mint's multisignature freeze authority. /// 3. ..`3+M` `[signer]` M signer accounts. diff --git a/pinocchio/interface/src/instruction.rs b/pinocchio/interface/src/instruction.rs index f74ac950..26c8a95a 100644 --- a/pinocchio/interface/src/instruction.rs +++ b/pinocchio/interface/src/instruction.rs @@ -232,12 +232,12 @@ pub enum TokenInstruction { /// Accounts expected by this instruction: /// /// * Single owner - /// 0. `[writable]` The account to freeze. + /// 0. `[writable]` The account to thaw. /// 1. `[]` The token mint. /// 2. `[signer]` The mint freeze authority. /// /// * Multisignature owner - /// 0. `[writable]` The account to freeze. + /// 0. `[writable]` The account to thaw. /// 1. `[]` The token mint. /// 2. `[]` The mint's multisignature freeze authority. /// 3. `..+M` `[signer]` M signer accounts.