alloy-rs / rlp

Fast implementation of Ethereum RLP serialization
Apache License 2.0
77 stars 16 forks source link

fix: usize byte count #2

Closed Wollac closed 12 months ago

Wollac commented 12 months ago

Motivation

Fixes #1 leading to invalid results on 32-bit targets.

Solution

Use usize::BITS to get actual size of a usize.

PR Checklist