paradigmxyz / reth

Modular, contributor-friendly and blazing-fast implementation of the Ethereum protocol, in Rust
https://reth.rs/
Apache License 2.0
3.99k stars 1.21k forks source link

feat: relax more tx manager bounds #12744

Closed mattsse closed 13 hours ago

mattsse commented 14 hours ago

relaxes more trait bounds in txmanager

since TxSignedRecovered != TxSigned I had to add an additional Into bound.

this will suck for a bit, but next step would be to gradually remove this, this will require some additional changes first.

no functional changes