diff --git a/command/server/config.go b/command/server/config.go index 07118dadc0a5cd604c7cfa39ade5bb259e7aa018..d5fbb491100fc66edb3e7120601521377525520c 100644 --- a/command/server/config.go +++ b/command/server/config.go @@ -85,6 +85,7 @@ type Config struct { // Account has the validator account related settings Accounts *AccountsConfig `hcl:"accounts,block"` + // GRPC has the grpc server related settings GRPC *GRPCConfig } @@ -229,6 +230,7 @@ type JsonRPCConfig struct { } type GRPCConfig struct { + // Addr is the bind address for the grpc rpc server Addr string }