Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion cmd/custom/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var (
apiAddr = flag.String("api-address", "", "Address for REST API")
grpcAddr = flag.String("grpc-address", "127.0.0.1:7475", "Address for gRPC API")
cfgPath = flag.String("cfg-path", "", "Path to configuration JSON file. No default value.")
enableGrpcApi = flag.Bool("enable-grpc-api", true, "Enables/disables gRPC API")
enableGrpcApi = flag.Bool("enable-grpc-api", false, "Enables/disables gRPC API")
buildExtendedApi = flag.Bool("build-extended-api", false, "Builds extended API. Note that state must be re-imported in case it wasn't imported with similar flag set")
serveExtendedApi = flag.Bool("serve-extended-api", false, "Serves extended API requests since the very beginning. The default behavior is to import until first block close to current time, and start serving at this point")
buildStateHashes = flag.Bool("build-state-hashes", false, "Calculate and store state hashes for each block height.")
Expand Down
2 changes: 1 addition & 1 deletion cmd/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ var (
apiAddr = flag.String("api-address", "", "Address for REST API")
apiKey = flag.String("api-key", "", "Api key")
grpcAddr = flag.String("grpc-address", "127.0.0.1:7475", "Address for gRPC API")
enableGrpcApi = flag.Bool("enable-grpc-api", true, "Enables/disables gRPC API")
enableGrpcApi = flag.Bool("enable-grpc-api", false, "Enables/disables gRPC API")
buildExtendedApi = flag.Bool("build-extended-api", false, "Builds extended API. Note that state must be re-imported in case it wasn't imported with similar flag set")
serveExtendedApi = flag.Bool("serve-extended-api", false, "Serves extended API requests since the very beginning. The default behavior is to import until first block close to current time, and start serving at this point")
buildStateHashes = flag.Bool("build-state-hashes", false, "Calculate and store state hashes for each block height.")
Expand Down