Skip to content

Commit be010db

Browse files
committed
fix: ensure_message_sizes_correct test
1 parent 35668c8 commit be010db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

anchor/common/ssv_types/src/message.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const OPERATOR_ID_SIZE: usize = 8;
3232
const VALIDATOR_INDEX_SIZE: usize = 8;
3333
const SLOT_SIZE: usize = 8;
3434
const PARTIAL_SIG_MSG_TYPE_SIZE: usize = 8;
35-
const MAX_PARTIAL_SIGNATURE_MESSAGES: usize = 1000;
35+
const MAX_PARTIAL_SIGNATURE_MESSAGES: usize = 5048;
3636

3737
const MAX_CONSENSUS_MSG_SIZE: usize = QBFT_MSG_TYPE_SIZE
3838
+ HEIGHT_SIZE
@@ -1189,7 +1189,7 @@ mod tests {
11891189
signer: Default::default(),
11901190
validator_index: Default::default(),
11911191
};
1192-
1000
1192+
5048
11931193
];
11941194
let partial_signature_messages = PartialSignatureMessages {
11951195
kind: PartialSignatureKind::PostConsensus,

0 commit comments

Comments
 (0)