From e2e279bfbcb428ec20de6ff3dfa58b06eb2e8ec0 Mon Sep 17 00:00:00 2001 From: MatheusFranco99 <48058141+MatheusFranco99@users.noreply.github.com> Date: Mon, 15 Jan 2024 06:40:45 -0300 Subject: [PATCH] Add comment on signature --- types/messages.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/messages.go b/types/messages.go index 4353d7f21..0cdd81681 100644 --- a/types/messages.go +++ b/types/messages.go @@ -131,7 +131,7 @@ func (msg *SSVMessage) Decode(data []byte) error { // SSVMessage is the main message passed within the SSV network. It encapsulates the SSVMessage structure and a signature type SignedSSVMessage struct { OperatorID OperatorID - Signature []byte `ssz-max:"512"` // Current signature max size allow keys up to 512*8 = 4096 bits + Signature []byte `ssz-max:"512"` // Created by the operator's private key. Max size allow keys up to 512*8 = 4096 bits Data []byte `ssz-max:"8388672"` // Max size extracted from SSVMessage }