File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ var initCardanoCmd = &cobra.Command{
31
31
Use : "cardano [stack_name]" ,
32
32
Short : "Create a new FireFly local dev stack using a Cardano blockchain" ,
33
33
Long : "Create a new FireFly local dev stack using a Cardano blockchain" ,
34
- Args : cobra .MaximumNArgs (3 ),
34
+ Args : cobra .MaximumNArgs (1 ),
35
35
RunE : func (cmd * cobra.Command , args []string ) error {
36
36
ctx := log .WithVerbosity (context .Background (), verbose )
37
37
ctx = log .WithLogger (ctx , logger )
@@ -41,6 +41,10 @@ var initCardanoCmd = &cobra.Command{
41
41
initOptions .BlockchainNodeProvider = types .BlockchainNodeProviderRemoteRPC .String ()
42
42
initOptions .TokenProviders = []string {}
43
43
initOptions .MultipartyEnabled = false
44
+ if len (args ) == 1 {
45
+ // stacks are enforced to have 1 member
46
+ args = append (args , "1" )
47
+ }
44
48
if err := initCommon (args ); err != nil {
45
49
return err
46
50
}
You can’t perform that action at this time.
0 commit comments