diff --git a/x/fbridge/types/params.go b/x/fbridge/types/params.go index 45fdbdc7d2..fbcab0ae6f 100644 --- a/x/fbridge/types/params.go +++ b/x/fbridge/types/params.go @@ -20,7 +20,7 @@ func CheckTrustLevelThreshold(total, current uint64, trustLevel Fraction) bool { } if total*trustLevel.Numerator <= current*trustLevel.Denominator && - total != 0 && current != 0 && + total > 0 && current >= 0 && current <= total { return true }