Skip to content

Commit

Permalink
correct size
Browse files Browse the repository at this point in the history
  • Loading branch information
ogabrielides committed Oct 31, 2024
1 parent d4e5bea commit ca7ad39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl QuorumFinalizationCommitment {
size += VarInt(self.signers.len() as u64).len() + self.signers.len();
size += VarInt(self.valid_members.len() as u64).len() + self.valid_members.len();
if self.version == 2 || self.version == 4 {
size += 16;
size += 2;
}
size
}
Expand Down

0 comments on commit ca7ad39

Please sign in to comment.