diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 8713b15..8321c6f 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,7 +2,7 @@ "version": "2.0.0", "tasks": [ { - "label": "package", + "label": "package chaincode", "type": "shell", "command": "./lib/btp-chaincode-lifecycle/chaincode.sh package", "group": { @@ -12,31 +12,31 @@ "problemMatcher": [] }, { - "label": "install", + "label": "deploy chaincode", "type": "shell", "command": "./lib/btp-chaincode-lifecycle/chaincode.sh install", "problemMatcher": [] }, { - "label": "approve", + "label": "approve chaincode", "type": "shell", "command": "./lib/btp-chaincode-lifecycle/chaincode.sh approve", "problemMatcher": [] }, { - "label": "commit", + "label": "commit chaincode", "type": "shell", "command": "./lib/btp-chaincode-lifecycle/chaincode.sh commit", "problemMatcher": [] }, { - "label": "init", + "label": "init chaincode", "type": "shell", "command": "./lib/btp-chaincode-lifecycle/chaincode.sh init", "problemMatcher": [] }, { - "label": "peers", + "label": "list peers", "type": "shell", "command": "./lib/btp-chaincode-lifecycle/chaincode.sh peers", "problemMatcher": [] @@ -48,6 +48,5 @@ "problemMatcher": [] } ], - "inputs": [ - ] + "inputs": [] }