exclude saloon from rewards

This commit is contained in:
keyan 2024-07-16 13:54:21 -05:00
parent 98efe763a0
commit 3a748b8d38
1 changed files with 3 additions and 2 deletions

View File

@ -43,10 +43,11 @@ export const USER_ID = {
sn: 4502,
anon: 27,
ad: 9,
delete: 106
delete: 106,
saloon: 17226
}
export const SN_USER_IDS = [USER_ID.k00b, USER_ID.ek, USER_ID.sn]
export const SN_NO_REWARDS_IDS = [USER_ID.anon, USER_ID.sn]
export const SN_NO_REWARDS_IDS = [USER_ID.anon, USER_ID.sn, USER_ID.saloon]
export const ANON_INV_PENDING_LIMIT = 1000
export const ANON_BALANCE_LIMIT_MSATS = 0 // disable
export const MAX_POLL_NUM_CHOICES = 10