Skip to content

Commit

Permalink
Add syncmode to network.env
Browse files Browse the repository at this point in the history
  • Loading branch information
Djadih committed Feb 28, 2023
1 parent 0a4b879 commit 9f7bc79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ include network.env

# Build the base command
# WARNING: WS_ADDR is a sensitive interface and should only be exposed to trusted networks
BASE_CMD = ./build/bin/go-quai --$(NETWORK) --syncmode full --verbosity $(VERBOSITY)
BASE_CMD = ./build/bin/go-quai --$(NETWORK) --syncmode $(SYNCMODE) --verbosity $(VERBOSITY)
BASE_CMD += --http --http.vhosts=* --http.addr $(HTTP_ADDR) --http.api $(HTTP_API)
BASE_CMD += --ws --ws.addr $(WS_ADDR) --ws.api $(WS_API)
ifeq ($(ENABLE_ARCHIVE),true)
Expand Down
5 changes: 4 additions & 1 deletion network.env.dist
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,7 @@ BOOTNODE=false
CORS=false

# Verbosity variable
VERBOSITY=3
VERBOSITY=3

# Syncmode variable
SYNCMODE=full

0 comments on commit 9f7bc79

Please sign in to comment.