Skip to content

Commit

Permalink
nodebuilder/core: Set default ports for RPC and GRPC (celestiaorg#2596)
Browse files Browse the repository at this point in the history
Now that we short-circuit on the IP address being empty, it's fine to
set defaults for RPC and GRPC ports

This fixes swamp tests as well
  • Loading branch information
renaynay authored Aug 23, 2023
1 parent d5b1e19 commit b6efbc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nodebuilder/core/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ type Config struct {
func DefaultConfig() Config {
return Config{
IP: "",
RPCPort: "",
GRPCPort: "",
RPCPort: "26657",
GRPCPort: "9090",
}
}

Expand Down

0 comments on commit b6efbc9

Please sign in to comment.