lambdaclass / lambda_ethereum_consensus

Elixir implementation of an Ethereum consensus client, which offers high reliance & fault tolerance
Apache License 2.0
100 stars 33 forks source link

Use bitstrings for `justification_bits` field #444

Closed MegaRedHand closed 6 months ago

MegaRedHand commented 11 months ago

We currently use one-byte binaries instead of 4-bit bitstrings. This leads to having to call BitVector.new/2 whenever we want to use the field.

MegaRedHand commented 6 months ago

Done