Skip to content

Commit

Permalink
chore: skip autocli for UploadMoreState method
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanchriswhite committed Jan 27, 2025
1 parent 25c8f2b commit d77af30
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions x/migration/module/autocli.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,13 @@ func (am AppModule) AutoCLIOptions() *autocliv1.ModuleOptions {
Skip: true, // skipped because authority gated
},
{
RpcMethod: "UploadMorseState",
Use: "upload-morse-state [state]",
Short: "Send a upload-morse-state tx",
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "state"},},
},
// this line is used by ignite scaffolding # autocli/tx
RpcMethod: "UploadMorseState",
Use: "upload-morse-state [state]",
Short: "Send a upload-morse-state tx",
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "state"}},
Skip: true, // skipped because authority gated
},
// this line is used by ignite scaffolding # autocli/tx
},
},
}
Expand Down

0 comments on commit d77af30

Please sign in to comment.