Skip to content

Commit

Permalink
fix add-card-to-set cli args
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickwieth committed Oct 9, 2023
1 parent aae6b39 commit 98395b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/cardchain/client/cli/tx_add_artwork_to_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ var _ = strconv.Itoa(0)

func CmdAddArtworkToSet() *cobra.Command {
cmd := &cobra.Command{
Use: "add-artwork-to-set [image]",
Use: "add-artwork-to-set [set-id] [image]",
Short: "Broadcast message AddArtworkToSet",
Args: cobra.ExactArgs(1),
Args: cobra.ExactArgs(2),
RunE: func(cmd *cobra.Command, args []string) (err error) {
argSetId, err := cast.ToUint64E(args[0])
if err != nil {
Expand Down

0 comments on commit 98395b1

Please sign in to comment.