From e0338b7ed0d2d78c4f96b9defa595e0da6d508ab Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Fri, 27 Dec 2024 12:14:33 +0300 Subject: [PATCH] capability: improve FullNode documentation That's the way it's defined and used in C#, see https://github.com/neo-project/neo/pull/3639 also. Signed-off-by: Roman Khimov --- pkg/network/capability/type.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/network/capability/type.go b/pkg/network/capability/type.go index 0955c1b38..2dec37a96 100644 --- a/pkg/network/capability/type.go +++ b/pkg/network/capability/type.go @@ -8,6 +8,6 @@ const ( TCPServer Type = 0x01 // WSServer represents WebSocket node capability type. WSServer Type = 0x02 - // FullNode represents full node capability type. + // FullNode represents a node that has complete current state. FullNode Type = 0x10 )