Skip to content

Commit 2811f8b

Browse files
committed
fix: don't require passing a member count of 1
Signed-off-by: Simon Gellis <[email protected]>
1 parent 15d5a2b commit 2811f8b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cmd/init_cardano.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var initCardanoCmd = &cobra.Command{
3131
Use: "cardano [stack_name]",
3232
Short: "Create a new FireFly local dev stack using a Cardano blockchain",
3333
Long: "Create a new FireFly local dev stack using a Cardano blockchain",
34-
Args: cobra.MaximumNArgs(3),
34+
Args: cobra.MaximumNArgs(1),
3535
RunE: func(cmd *cobra.Command, args []string) error {
3636
ctx := log.WithVerbosity(context.Background(), verbose)
3737
ctx = log.WithLogger(ctx, logger)
@@ -41,6 +41,10 @@ var initCardanoCmd = &cobra.Command{
4141
initOptions.BlockchainNodeProvider = types.BlockchainNodeProviderRemoteRPC.String()
4242
initOptions.TokenProviders = []string{}
4343
initOptions.MultipartyEnabled = false
44+
if len(args) == 1 {
45+
// stacks are enforced to have 1 member
46+
args = append(args, "1")
47+
}
4448
if err := initCommon(args); err != nil {
4549
return err
4650
}

0 commit comments

Comments
 (0)