Update gov_tx.go

adding instantiate-anyof-addresses flag in the gov_tx.go
This commit is contained in:
ravaliGangasani
2022-11-08 16:37:54 +05:30
committed by GitHub
parent a9ce273e3c
commit b7e4770e31

View File

@@ -88,6 +88,7 @@ func ProposalStoreCodeCmd() *cobra.Command {
cmd.Flags().String(flagInstantiateNobody, "", "Nobody except the governance process can instantiate a contract from the code, optional")
cmd.Flags().String(flagInstantiateByAddress, "", "Only this address can instantiate a contract instance from the code, optional")
cmd.Flags().Bool(flagUnpinCode, false, "Unpin code on upload, optional")
cmd.Flags().StringSlice(flagInstantiateByAnyOfAddress, []string{}, "Any of the addresses can instantiate a contract from the code, optional")
// proposal flags
cmd.Flags().String(cli.FlagTitle, "", "Title of proposal")