Skip to content

Commit e9875c0

Browse files
authored
Caplin: fix smol panic (#13715)
1 parent 3c29ecc commit e9875c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cl/cltypes/solid/validator_set.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func (v *ValidatorSet) expandBuffer(newValidatorSetLength int) {
9191
func (v *ValidatorSet) Append(val Validator) {
9292
offset := v.EncodingSizeSSZ()
9393
// we are overflowing the buffer? append.
94-
if offset >= len(v.buffer) {
94+
if offset+validatorSize >= len(v.buffer) {
9595
v.expandBuffer(v.l + 1)
9696
v.phase0Data = append(v.phase0Data, Phase0Data{})
9797
}

0 commit comments

Comments
 (0)