From 18e8951c9705c6384586462251e8cbd52b09bf7e Mon Sep 17 00:00:00 2001 From: Jack May Date: Mon, 26 Oct 2020 10:24:04 -0700 Subject: [PATCH] Refer to CreateAccount --- token/program-v3/src/instruction.rs | 6 +++--- token/program/src/instruction.rs | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/token/program-v3/src/instruction.rs b/token/program-v3/src/instruction.rs index e6f15b7d..e84eb0c2 100644 --- a/token/program-v3/src/instruction.rs +++ b/token/program-v3/src/instruction.rs @@ -23,7 +23,7 @@ pub enum TokenInstruction { /// Initializes a new mint and optionally deposits all the newly minted tokens in an account. /// /// The `InitializeMint` instruction requires no signers and MUST be included within - /// the same Transaction as the system program's `CreateInstruction` that creates the account + /// the same Transaction as the system program's `CreateAccount` instruction that creates the account /// being initialized. Otherwise another party can acquire ownership of the uninitialized account. /// /// Accounts expected by this instruction: @@ -45,7 +45,7 @@ pub enum TokenInstruction { /// initialized before this command can succeed. /// /// The `InitializeAccount` instruction requires no signers and MUST be included within - /// the same Transaction as the system program's `CreateInstruction` that creates the account + /// the same Transaction as the system program's `CreateAccount` instruction that creates the account /// being initialized. Otherwise another party can acquire ownership of the uninitialized account. /// /// Accounts expected by this instruction: @@ -62,7 +62,7 @@ pub enum TokenInstruction { /// number of signers (M) required to validate this multisignature account. /// /// The `InitializeMultisig` instruction requires no signers and MUST be included within - /// the same Transaction as the system program's `CreateInstruction` that creates the account + /// the same Transaction as the system program's `CreateAccount` instruction that creates the account /// being initialized. Otherwise another party can acquire ownership of the uninitialized account. /// /// Accounts expected by this instruction: diff --git a/token/program/src/instruction.rs b/token/program/src/instruction.rs index 1d266433..ad205af9 100644 --- a/token/program/src/instruction.rs +++ b/token/program/src/instruction.rs @@ -23,7 +23,7 @@ pub enum TokenInstruction { /// Initializes a new mint and optionally deposits all the newly minted tokens in an account. /// /// The `InitializeMint` instruction requires no signers and MUST be included within - /// the same Transaction as the system program's `CreateInstruction` that creates the account + /// the same Transaction as the system program's `CreateAccount` instruction that creates the account /// being initialized. Otherwise another party can acquire ownership of the uninitialized account. /// /// Accounts expected by this instruction: @@ -45,7 +45,7 @@ pub enum TokenInstruction { /// initialized before this command can succeed. /// /// The `InitializeAccount` instruction requires no signers and MUST be included within - /// the same Transaction as the system program's `CreateInstruction` that creates the account + /// the same Transaction as the system program's `CreateAccount` instruction that creates the account /// being initialized. Otherwise another party can acquire ownership of the uninitialized account. /// /// Accounts expected by this instruction: @@ -62,7 +62,7 @@ pub enum TokenInstruction { /// number of signers (M) required to validate this multisignature account. /// /// The `InitializeMultisig` instruction requires no signers and MUST be included within - /// the same Transaction as the system program's `CreateInstruction` that creates the account + /// the same Transaction as the system program's `CreateAccount` instruction that creates the account /// being initialized. Otherwise another party can acquire ownership of the uninitialized account. /// /// Accounts expected by this instruction: