diff --git a/bento_beacon/utils/censorship.py b/bento_beacon/utils/censorship.py index 582cfb32..49a8005d 100644 --- a/bento_beacon/utils/censorship.py +++ b/bento_beacon/utils/censorship.py @@ -13,7 +13,7 @@ def get_censorship_threshold(): def censored_count(count): t = get_censorship_threshold() - if count < t: + if count <= t: return 0 return count