lower threshold for tps warning bar

This commit is contained in:
tjs 2022-04-07 15:04:28 -04:00
parent eb2cfff9b4
commit 8e2ffe53ed
1 changed files with 1 additions and 1 deletions

View File

@ -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 {