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
consenus_encoding: Make encoding functions use unsized
`Self` in `Encodable` is not sized (because the `Self` type within
traits is not sized by default). And also generic types as function
arguments are sized by default so the args to our encoding functions
`(e.g., `encode_to_vec`) are sized but they do not need to be.
Add explicit `?Sized` to the encoding functions.
0 commit comments