Skip to content

Commit

Permalink
chore: change default listening port from 8545 to 8546 (#22)
Browse files Browse the repository at this point in the history
Signed-off-by: D4ryl00 <[email protected]>
  • Loading branch information
D4ryl00 authored Apr 4, 2024
1 parent 4e5d6ef commit b60f645
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Starts the indexer service, which includes the fetcher and JSON-RPC server

FLAGS
-db-path indexer-db the absolute path for the indexer DB (embedded)
-listen-address 0.0.0.0:8545 the IP:PORT URL for the indexer JSON-RPC server
-listen-address 0.0.0.0:8546 the IP:PORT URL for the indexer JSON-RPC server
-log-level info the log level for the CLI output
-max-chunk-size 100 the range for fetching blockchain data by a single worker
-max-slots 100 the amount of slots (workers) the fetcher employs
Expand Down
2 changes: 1 addition & 1 deletion serve/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
)

const (
DefaultListenAddress = "0.0.0.0:8545"
DefaultListenAddress = "0.0.0.0:8546"
)

type HTTPServer struct {
Expand Down

0 comments on commit b60f645

Please sign in to comment.