From 5b40b46836ce858e9a5a7d45d22dbe842967041f Mon Sep 17 00:00:00 2001 From: PraetorP Date: Mon, 18 Jul 2022 14:08:02 +0000 Subject: [PATCH] fix: FT --- --- a/pallets/fungible/src/lib.rs +++ b/pallets/fungible/src/lib.rs @@ -537,7 +537,7 @@ Ok(allowance) } - /// Transfer FT tokens from one account to another. + /// Transfer fungible tokens from one account to another. /// Same as the [`transfer`] but spender doesn't needs to be an owner of the token pieces. /// The owner should set allowance for the spender to transfer pieces. /// See [`set_allowance`][`Pallet::set_allowance`] for more details. @@ -562,7 +562,7 @@ Ok(()) } - /// Burn FT tokens from the account. + /// Burn fungible tokens from the account. /// /// Same as the [`burn`][`Pallet::burn`] but spender doesn't need to be an owner of the tokens. The `from` should /// set allowance for the spender to burn tokens. @@ -585,7 +585,7 @@ Ok(()) } - /// Creates FT token. + /// Creates fungible token. /// /// The sender should be the owner/admin of the collection or collection should be configured /// to allow public minting. -- gitstuff