From 8e2ffe53ed938a60747a91c9595ac29f036af497 Mon Sep 17 00:00:00 2001 From: tjs Date: Thu, 7 Apr 2022 15:04:28 -0400 Subject: [PATCH] lower threshold for tps warning bar --- components/GlobalNotification.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/GlobalNotification.tsx b/components/GlobalNotification.tsx index 69769a59..427e602a 100644 --- a/components/GlobalNotification.tsx +++ b/components/GlobalNotification.tsx @@ -16,7 +16,7 @@ const getRecentPerformance = async (setShow, setTps) => { const totalTransactions = sumBy(response, 'numTransactions') const tps = totalTransactions / totalSecs - if (tps < 1800) { + if (tps < 1500) { setShow(true) setTps(tps) } else {