Skip to content

Commit

Permalink
start http rpc server and eth namespace by default (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
manav2401 committed Feb 4, 2022
1 parent 9023f44 commit 8300aad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/cli/server/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -443,11 +443,11 @@ func DefaultConfig() *Config {
GasCap: ethconfig.Defaults.RPCGasCap,
TxFeeCap: ethconfig.Defaults.RPCTxFeeCap,
Http: &APIConfig{
Enabled: false,
Enabled: true,
Port: 8545,
Prefix: "",
Host: "localhost",
Modules: []string{"web3", "net"},
Modules: []string{"eth", "web3", "net"},
},
Ws: &APIConfig{
Enabled: false,
Expand Down

0 comments on commit 8300aad

Please sign in to comment.