Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sesheffield committed Jul 25, 2024
1 parent e947133 commit 40d8dbb
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
args: --timeout 30m --verbose --allow-parallel-runners --max-same-issues 0 --max-issues-per-linter 0
working-directory: ${{ github.workspace }}
if: |
contains(needs.changed_files.outputs.changed_files, '.go')
contains(steps.changed-files.outputs.all_changed_files, '.go')
1 change: 0 additions & 1 deletion cmd/kava/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ func main() {

if err := svrcmd.Execute(rootCmd, cmd.EnvPrefix, app.DefaultNodeHome); err != nil {
switch e := err.(type) {

case server.ErrorCode:
os.Exit(e.Code)

Expand Down
2 changes: 0 additions & 2 deletions x/bep3/client/cli/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,11 @@ func GetQueryCmd(queryRoute string) *cobra.Command {
QueryGetAtomicSwapsCmd(queryRoute),
QueryParamsCmd(queryRoute),
}

for _, cmd := range cmds {
flags.AddQueryFlagsToCmd(cmd)
}

bep3QueryCmd.AddCommand(cmds...)

return bep3QueryCmd
}

Expand Down

0 comments on commit 40d8dbb

Please sign in to comment.