Skip to content

Commit

Permalink
Provide maxpeers as an optional parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Djadih committed Oct 12, 2023
1 parent 0beb9e7 commit 088c440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ BASE_CMD += --http --http.vhosts=* --http.addr $(HTTP_ADDR) --http.api $(HTTP_AP
BASE_CMD += --ws --ws.addr $(WS_ADDR) --ws.api $(WS_API)
BASE_CMD += --slices $(SLICES)
BASE_CMD += --db.engine $(DB_ENGINE)
BASE_CMD += --maxpeers $(MAX_PEERS)
BASE_CMD += $(if $(MAX_PEERS),--maxpeers $(MAX_PEERS))
BASE_CMD += $(if $(METRICS),--metrics)
ifeq ($(ENABLE_ARCHIVE),true)
BASE_CMD += --gcmode archive
Expand Down

0 comments on commit 088c440

Please sign in to comment.