Skip to content

Commit

Permalink
Remove unused parameters escc and vscc
Browse files Browse the repository at this point in the history
Signed-off-by: Artem Barger <artem@bargr.net>
  • Loading branch information
C0rWin committed Jan 2, 2024
1 parent ac41752 commit 6296029
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions internal/peer/chaincode/chaincode.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ var (
channelID string
chaincodeVersion string
policy string
escc string
vscc string
policyMarshalled []byte
transient string
isInit bool
Expand Down Expand Up @@ -109,10 +107,6 @@ func resetFlags() {
"The channel on which this command should be executed")
flags.StringVarP(&policy, "policy", "P", common.UndefinedParamValue,
"The endorsement policy associated to this chaincode")
flags.StringVarP(&escc, "escc", "E", common.UndefinedParamValue,
"The name of the endorsement system chaincode to be used for this chaincode")
flags.StringVarP(&vscc, "vscc", "V", common.UndefinedParamValue,
"The name of the verification system chaincode to be used for this chaincode")
flags.BoolVarP(&isInit, "isInit", "I", false,
"Is this invocation for init (useful for supporting legacy chaincodes in the new lifecycle)")
flags.StringVar(&collectionsConfigFile, "collections-config", common.UndefinedParamValue,
Expand Down

0 comments on commit 6296029

Please sign in to comment.