Browse Source

fix megacheck warning

pull/1780/head
Anton Kaliaev 7 years ago
parent
commit
5be9c50b47
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      cmd/abci-cli/abci-cli.go

+ 2
- 2
cmd/abci-cli/abci-cli.go View File

@ -355,12 +355,12 @@ func cmdInfo(cmd *cobra.Command, args []string) error {
// Set an option on the application
func cmdSetOption(cmd *cobra.Command, args []string) error {
log, err := client.SetOptionSync(args[0], args[1])
resLog, err := client.SetOptionSync(args[0], args[1])
if err != nil {
return err
}
printResponse(cmd, args, response{
Log: log,
Log: resLog,
})
return nil
}


Loading…
Cancel
Save