Skip to content

Commit

Permalink
Default BeaconRPCProvider for Validator Should Match Beacon Node's Ho…
Browse files Browse the repository at this point in the history
…st (#6268)

* default bind to localhost for validator
* Merge branch 'master' into validator-localhost
  • Loading branch information
rauljordan committed Jun 15, 2020
1 parent 9d42148 commit 83d1aa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions validator/flags/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var (
BeaconRPCProviderFlag = &cli.StringFlag{
Name: "beacon-rpc-provider",
Usage: "Beacon node RPC provider endpoint",
Value: "localhost:4000",
Value: "127.0.0.1:4000",
}
// CertFlag defines a flag for the node's TLS certificate.
CertFlag = &cli.StringFlag{
Expand All @@ -29,7 +29,7 @@ var (
SlasherRPCProviderFlag = &cli.StringFlag{
Name: "slasher-rpc-provider",
Usage: "Slasher node RPC provider endpoint",
Value: "localhost:4002",
Value: "127.0.0.1:4002",
}
// SlasherCertFlag defines a flag for the slasher node's TLS certificate.
SlasherCertFlag = &cli.StringFlag{
Expand Down

0 comments on commit 83d1aa8

Please sign in to comment.