From 5c8e2d29eee9539d0a6eac6ba4dcf15aa36ec329 Mon Sep 17 00:00:00 2001 From: Maxim Tiron Date: Tue, 11 Mar 2025 13:36:54 +0300 Subject: [PATCH] Update tokenERC20.js Deleted redundant `totalSupply` param from `Initialize` JSDoc Signed-off-by: Maxim Tiron --- token-erc-20/chaincode-javascript/lib/tokenERC20.js | 1 - 1 file changed, 1 deletion(-) diff --git a/token-erc-20/chaincode-javascript/lib/tokenERC20.js b/token-erc-20/chaincode-javascript/lib/tokenERC20.js index 025e3e76..4373ea1c 100644 --- a/token-erc-20/chaincode-javascript/lib/tokenERC20.js +++ b/token-erc-20/chaincode-javascript/lib/tokenERC20.js @@ -224,7 +224,6 @@ class TokenERC20Contract extends Contract { * @param {String} name The name of the token * @param {String} symbol The symbol of the token * @param {String} decimals The decimals of the token - * @param {String} totalSupply The totalSupply of the token */ async Initialize(ctx, name, symbol, decimals) { // Check client authorization