From bad3388cab8f223d57cc831b968e0811b480f514 Mon Sep 17 00:00:00 2001 From: Sky Young Date: Fri, 19 Jul 2019 11:42:45 -0600 Subject: [PATCH] Allow up to 101000 blocks to be batch requested --- lib/net/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/net/common.js b/lib/net/common.js index 79b9b139..c61db97e 100644 --- a/lib/net/common.js +++ b/lib/net/common.js @@ -218,7 +218,7 @@ exports.MAX_REQUEST = 5000; * @default */ -exports.MAX_BLOCK_REQUEST = 50000 + 1000; +exports.MAX_BLOCK_REQUEST = 100000 + 1000; /** * Maximum number of tx requests.