From ea9906cdcf8e8bc5a6a4ea8a9535ba05f3fb452b 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..a82abe1 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. + int64 ms_per_block = 3 [json_name = "msPerBlock"]; }