diff --git a/wallet.go b/wallet.go index 4baf86e..87e5822 100644 --- a/wallet.go +++ b/wallet.go @@ -316,8 +316,8 @@ var wallet = &cli.Command{ }, Action: func(ctx context.Context, c *cli.Command) error { args := c.Args().Slice() - if len(args) >= 2 { - return fmt.Errorf("must be called as `nak wallet send ...") + if len(args) < 2 { + return fmt.Errorf("must be called as `nak wallet nutzap ...") } w, closew, err := prepareWallet(ctx, c)