Skip to content

Commit

Permalink
fix cli
Browse files Browse the repository at this point in the history
  • Loading branch information
harish551 committed Apr 16, 2024
1 parent 678f5ee commit 5f01dbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/itc/client/cli/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func validate(nft *types.NFTDetails) error {
if nft.StartIndex <= 0 {
return fmt.Errorf("start index is required and should be greater than 0")
}
if nft.NameDelimeter != "" && len(nft.NameDelimeter) > 1 {
if nft.NameDelimiter != "" && len(nft.NameDelimiter) > 1 {
return fmt.Errorf("name delemeter should be a single character string")
}
return nil
Expand Down

0 comments on commit 5f01dbd

Please sign in to comment.