From 2e23cb388844b32c52144fad569b2d84838fe46e Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Wed, 15 Sep 2021 11:15:50 +0300 Subject: [PATCH] [#172] netmap: Add ms_per_block field to NetworkInfo message Signed-off-by: Leonard Lyubich --- netmap/types.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/netmap/types.proto b/netmap/types.proto index a068938..2f86421 100644 --- a/netmap/types.proto +++ b/netmap/types.proto @@ -235,4 +235,7 @@ message NetworkInfo { // Magic number of the sidechain of the NeoFS network. uint64 magic_number = 2 [json_name = "magicNumber"]; + + // MillisecondsPerBlock network parameter of the sidechain of the NeoFS network. + int64 ms_per_block = 3 [json_name = "msPerBlock"]; }