Skip to content

Commit 33b7cf6

Browse files
balogh.adam@icloud.combalogh.adam@icloud.com
authored andcommitted
limit
1 parent 6179d7f commit 33b7cf6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

server/activity_tracker.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ async def get_activity_stats(self, user_address: str) -> ActivityStats:
129129

130130
# Bypass daily limit for privileged wallets
131131
if user_address in DAILY_LIMIT_BYPASS_WALLETS:
132-
daily_message_limit = 10_000
132+
# TODO: Remove this once we have a proper daily limit
133+
daily_message_limit = PointsConfig.DAILY_MESSAGE_LIMIT
133134
else:
134135
daily_message_limit = PointsConfig.DAILY_MESSAGE_LIMIT
135136

0 commit comments

Comments
 (0)