From 2180afaed0e200966cf127b5c084ce65a032f856 Mon Sep 17 00:00:00 2001 From: keyan Date: Thu, 25 Apr 2024 19:37:22 -0500 Subject: [PATCH] lower wallet limit to 100k --- lib/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/constants.js b/lib/constants.js index 34bc20bf..f149b9b8 100644 --- a/lib/constants.js +++ b/lib/constants.js @@ -35,7 +35,7 @@ export const MAX_POLL_CHOICE_LENGTH = 40 export const ITEM_SPAM_INTERVAL = '10m' export const ANON_ITEM_SPAM_INTERVAL = '0' export const INV_PENDING_LIMIT = 100 -export const BALANCE_LIMIT_MSATS = 250000000 // 250k sat +export const BALANCE_LIMIT_MSATS = 100000000 // 100k sat export const SN_USER_IDS = [616, 6030, 946, 4502, 27] export const SN_NO_REWARDS_IDS = [27, 4502] export const ANON_INV_PENDING_LIMIT = 1000