From 22982cf1e34a81b18f1daa5b1a6c5301068c2630 Mon Sep 17 00:00:00 2001 From: Dmitry Shihovtsev Date: Tue, 14 Nov 2023 12:17:00 +0600 Subject: [PATCH] Update country limit values to show all proposals --- proposal/inmemory.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proposal/inmemory.go b/proposal/inmemory.go index 662727f..d16fae1 100644 --- a/proposal/inmemory.go +++ b/proposal/inmemory.go @@ -15,8 +15,8 @@ import ( const ( // TODO: lower this values once dvpn apps start using proposal numbers endpoint. - countryHardLimit = 10000 - countrySoftLimit = 10000 + countryHardLimit = 100000 + countrySoftLimit = 100000 ) type Enhancer interface {