You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cannot Marshal / SizeSSZ when a struct has a nil pointer.
For example, if BeaconBlock.Body is nil, this will panic.
// SizeSSZ returns the ssz encoded size in bytes for the BeaconBlock objectfunc (b*BeaconBlock) SizeSSZ() (sizeint) {
size=76// Field (3) 'Body'size+=b.Body.SizeSSZ()
return
}
Cannot Marshal / SizeSSZ when a struct has a nil pointer.
For example, if BeaconBlock.Body is nil, this will panic.
Using commit f7a73f0
The text was updated successfully, but these errors were encountered: