From 83f7bc5e0754690c90c0952df82932cdef03650f Mon Sep 17 00:00:00 2001 From: Ethan O'Brien <77750390+ethanaobrien@users.noreply.github.com> Date: Fri, 3 May 2024 14:22:15 -0500 Subject: [PATCH] Increase LP cap --- src/router/global.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/global.rs b/src/router/global.rs index 2905b21..f9c17b1 100644 --- a/src/router/global.rs +++ b/src/router/global.rs @@ -123,7 +123,7 @@ pub fn error_resp() -> HttpResponse { // true - limit reached // false - all good -const GIFT_LIMIT: usize = 100000; +const GIFT_LIMIT: usize = 1000000; const LIMIT_ITEMS: i64 = 200000000; const LIMIT_COINS: i64 = 2000000000; const LIMIT_PRIMOGEMS: i64 = 2000000000;