@highway1/cli 0.1.18 → 0.1.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -116189,7 +116189,12 @@ async function createNode(config2) {
|
|
|
116189
116189
|
}
|
|
116190
116190
|
};
|
|
116191
116191
|
if (enableRelay) {
|
|
116192
|
-
libp2pConfig.services.relay = circuitRelayServer(
|
|
116192
|
+
libp2pConfig.services.relay = circuitRelayServer({
|
|
116193
|
+
reservations: {
|
|
116194
|
+
maxReservations: 100
|
|
116195
|
+
// Allow up to 100 concurrent relay reservations
|
|
116196
|
+
}
|
|
116197
|
+
});
|
|
116193
116198
|
}
|
|
116194
116199
|
if (enableDHT) {
|
|
116195
116200
|
libp2pConfig.services.dht = kadDHT({
|