Skip to content

Commit

Permalink
fix iaviewer prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
giskook committed Jun 20, 2023
1 parent f3f9583 commit 59483eb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cmd/okbchaind/iaviewer.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,10 @@ func iaviewerReadCmd(ctx *iaviewerContext) *cobra.Command {
cmd.PersistentFlags().String(flagKey, "", "print only the value for this key, key must be in hex format.\n"+
"if specified, keyprefix, start and limit flags would be ignored")
cmd.PersistentFlags().String(flagKeyPrefix, "", "print values for keys with specified prefix, prefix must be in hex format.")
viper.BindPFlag(flagKeyPrefix, cmd.PersistentFlags().Lookup(flagKeyPrefix))
viper.BindPFlag(flagHex, cmd.PersistentFlags().Lookup(flagHex))
viper.BindPFlag(flagKey, cmd.PersistentFlags().Lookup(flagKey))

return cmd
}

Expand All @@ -231,6 +235,7 @@ func iaviewerReadNodeCmd(ctx *iaviewerContext) *cobra.Command {
},
}
cmd.PersistentFlags().String(flagNodeHash, "", "print only the value for this hash, key must be in hex format.")
viper.BindPFlag(flagNodeHash, cmd.PersistentFlags().Lookup(flagNodeHash))
return cmd
}

Expand Down Expand Up @@ -317,6 +322,8 @@ func iaviewerDiffCmd(ctx *iaviewerContext) *cobra.Command {
}
cmd.PersistentFlags().Bool(flagHex, false, "print key and value in hex format")
cmd.PersistentFlags().String(flagKeyPrefix, "", "diff values for keys with specified prefix, prefix must be in hex format.")
viper.BindPFlag(flagHex, cmd.PersistentFlags().Lookup(flagHex))
viper.BindPFlag(flagKeyPrefix, cmd.PersistentFlags().Lookup(flagKeyPrefix))
return cmd
}

Expand Down

0 comments on commit 59483eb

Please sign in to comment.