We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c29ecc commit e9875c0Copy full SHA for e9875c0
cl/cltypes/solid/validator_set.go
@@ -91,7 +91,7 @@ func (v *ValidatorSet) expandBuffer(newValidatorSetLength int) {
91
func (v *ValidatorSet) Append(val Validator) {
92
offset := v.EncodingSizeSSZ()
93
// we are overflowing the buffer? append.
94
- if offset >= len(v.buffer) {
+ if offset+validatorSize >= len(v.buffer) {
95
v.expandBuffer(v.l + 1)
96
v.phase0Data = append(v.phase0Data, Phase0Data{})
97
}
0 commit comments