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
Eyeballing this, it seems that clippy is right and we should definitely Box the block and possible the Cow<BeaconState> (I'm not sure if the Cow needs boxing).
The text was updated successfully, but these errors were encountered:
## Issue Addressed
NA
## Proposed Changes
- Panic or return error if we overflow `usize` in SSZ decoding/encoding derive macros.
- I claim that the panics can only be triggered by a faulty type definition in lighthouse, they cannot be triggered externally on a validly defined struct.
- Use `Ordering` instead of some `if` statements, as demanded by clippy.
- Remove some old clippy `allow` that seem to no longer be required.
- Add comments to interesting clippy statements that we're going to continue to ignore.
- Create #1713
## Additional Info
NA
Description
There is an enum in the
store
which contains variants with largely varying sizes:lighthouse/beacon_node/store/src/lib.rs
Lines 121 to 130 in d9f4819
Eyeballing this, it seems that clippy is right and we should definitely
Box
the block and possible theCow<BeaconState>
(I'm not sure if theCow
needs boxing).The text was updated successfully, but these errors were encountered: