feat(config): Increase max peer limit

This commit is contained in:
Kilian Tyler
2026-01-02 20:21:47 -05:00
parent 3df927b2d7
commit 66e197f77e
+1 -1
View File
@@ -13,7 +13,7 @@ const TOPIC = crypto.createHash("sha256").update(TOPIC_NAME).digest();
*/
const POW_PREFIX = "0000";
const MAX_PEERS = parseInt(process.env.MAX_PEERS) || 10000;
const MAX_PEERS = parseInt(process.env.MAX_PEERS) || 1000000;
const MAX_MESSAGE_SIZE = 2048;
const MAX_RELAY_HOPS = 3;