refactor: increase consensus_updates batch limit to 50

This commit is contained in:
Derrick Hammer 2023-07-15 06:36:36 -04:00
parent d24b0322fb
commit 6b99aa5b2f
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -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();