chore(gov): fix typo (#18953)

This commit is contained in:
Harvey 2024-01-06 00:01:42 +09:00 committed by GitHub
parent 014cbbcb8b
commit 847ce3944c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -210,7 +210,7 @@ func (p Params) ValidateBasic(addressCodec address.Codec) error {
return fmt.Errorf("expedited voting period must be positive: %s", p.ExpeditedVotingPeriod)
}
if p.ExpeditedVotingPeriod.Seconds() >= p.VotingPeriod.Seconds() {
return fmt.Errorf("expedited voting period %s must be strictly less that the regular voting period %s", p.ExpeditedVotingPeriod, p.VotingPeriod)
return fmt.Errorf("expedited voting period %s must be strictly less than the regular voting period %s", p.ExpeditedVotingPeriod, p.VotingPeriod)
}
for _, addr := range p.OptimisticAuthorizedAddresses {