From 6b99aa5b2f30377af126d4182c80eaa08638d0e1 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sat, 15 Jul 2023 06:36:36 -0400 Subject: [PATCH] refactor: increase consensus_updates batch limit to 50 --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 17ba14c..989283a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -35,7 +35,7 @@ const plugin: Plugin = { throw new Error("count required and must be a number"); } - request.count = Math.min(request.count, 5); + request.count = Math.min(request.count, 50); if (!client.isSynced) { await client.sync();