From eceb53af5d9523af31a5e24aabff86a8ed2f04f1 Mon Sep 17 00:00:00 2001 From: Marco van Dijk Date: Thu, 26 May 2022 20:02:48 +0200 Subject: [PATCH] Just print all earners in the summary --- src/pages/stats.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/stats.js b/src/pages/stats.js index a64a179..80e3f03 100644 --- a/src/pages/stats.js +++ b/src/pages/stats.js @@ -107,11 +107,11 @@ const Stats = (obj) => { if (data.winningTicketsReceived.length && data.winningTicketsReceivedSum) { summary += data.winningTicketsReceived.length + " orchestrators earned " + data.winningTicketsReceivedSum.toFixed(3) + " Eth in transcoding fees \r\n"; } - summary += luckyCount + " of them received more than 0.2 Eth \r\n"; - summary += "Top 25 earners for this month are: \r\n"; + summary += luckyCount + " of them received more than 0.2 Eth\r\n"; + summary += "Winning tickets sent out this month:\r\n"; // Find highest earner - const maxPrint = 25; + const maxPrint = 100; let currentPrinted = 0; while (currentPrinted < maxPrint && winnerList.length) { let ticketIdx2 = winnerList.length - 1;