Skip to content

Commit

Permalink
ci: fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hallazzang committed May 31, 2024
1 parent bb1234a commit fa143f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/stakeibc/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ func (p Params) Validate() error {
if err := validTimeoutNanos(p.IbcTransferTimeoutNanos); err != nil {
return err
}
if err := isPercentage(p.ValidatorWeightCap); err != nil {
if err := validValidatorWeightCap(p.ValidatorWeightCap); err != nil {
return err
}

Expand Down

0 comments on commit fa143f5

Please sign in to comment.