Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cmd/utils/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ var (
Name: "http",
Aliases: []string{"rpc"},
Usage: "Enable the HTTP-RPC server",
Value: true,
Value: false,
Category: flags.APICategory,
}
HTTPListenAddrFlag = &cli.StringFlag{
Expand Down Expand Up @@ -507,7 +507,7 @@ var (
Name: "http-api",
Aliases: []string{"rpcapi"},
Usage: "API's offered over the HTTP-RPC interface",
Value: "debug,eth,net,txpool,web3,XDPoS",
Value: "eth,net,txpool,web3,XDPoS",
Category: flags.APICategory,
}
HTTPPathPrefixFlag = &cli.StringFlag{
Expand Down Expand Up @@ -546,7 +546,7 @@ var (
WSEnabledFlag = &cli.BoolFlag{
Name: "ws",
Usage: "Enable the WS-RPC server",
Value: true,
Value: false,
Category: flags.APICategory,
}
WSListenAddrFlag = &cli.StringFlag{
Expand All @@ -567,7 +567,7 @@ var (
Name: "ws-api",
Aliases: []string{"wsapi"},
Usage: "API's offered over the WS-RPC interface",
Value: "debug,eth,net,txpool,web3,XDPoS",
Value: "eth,net,txpool,web3,XDPoS",
Category: flags.APICategory,
}
WSAllowedOriginsFlag = &cli.StringFlag{
Expand Down
Loading