From a22a68cdc275c9c240b6501e88de7c64d2aa9c5a Mon Sep 17 00:00:00 2001 From: Ferran Borreguero <ferranbt@protonmail.com> Date: Mon, 25 Oct 2021 14:07:57 +0200 Subject: [PATCH] Add comments --- command/server/config.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/command/server/config.go b/command/server/config.go index 07118dadc..d5fbb4911 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 } -- GitLab