From 0959261d078b32aa91462d3157b4873dfbfd655a Mon Sep 17 00:00:00 2001 From: Ali Shahverdi Date: Mon, 24 Oct 2022 15:16:04 +0330 Subject: [PATCH] fixed comment consistency problem with erc20 chaincode Signed-off-by: Ali Shahverdi --- token-erc-20/chaincode-go/chaincode/token_contract.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/token-erc-20/chaincode-go/chaincode/token_contract.go b/token-erc-20/chaincode-go/chaincode/token_contract.go index a3a9e68b..084f2b64 100644 --- a/token-erc-20/chaincode-go/chaincode/token_contract.go +++ b/token-erc-20/chaincode-go/chaincode/token_contract.go @@ -702,7 +702,7 @@ func add(b int, q int) (int, error) { return sum, nil } -//Checks that contract options have been already initialized +// Checks that contract options have been already initialized func checkInitialized(ctx contractapi.TransactionContextInterface) (bool, error) { tokenName, err := ctx.GetStub().GetState(nameKey) if err != nil {