From 4d19da826e7535bde01ac070e78ef9ba98e38b7f Mon Sep 17 00:00:00 2001 From: ekzyis Date: Sat, 9 Nov 2024 00:03:51 +0100 Subject: [PATCH] Update prize pool and participants --- src/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index a2025f0..8680534 100644 --- a/src/main.py +++ b/src/main.py @@ -18,8 +18,8 @@ x================================+ # run this to sum sats: # SELECT SUM(msats) / 1000 FROM "Item" WHERE ("userId" = 19494) or id = 342259; -# last updated: 2024-06-14 -prize_pool = 336028.39 +# last updated: 2024-11-08 +prize_pool = 337862.39 participants = [ Participant("orthwyrm", 260), @@ -46,6 +46,7 @@ participants = [ Participant("grayruby", 655), Participant("siggy47", 380), Participant("phatom", 440, False), + Participant("Carresan", 619) ] participants = list(sorted(participants, key=attrgetter('day'))) participants = populate_eliminated(participants)