Remove TransactionSignedNoHash type #12471
Labels
A-sdk
Related to reth's use as a library
C-enhancement
New feature or request
D-good-first-issue
Nice and easy! A great choice to get started
Describe the feature
this type is just
reth/crates/primitives/src/transaction/mod.rs
Line 1050 in c44edf5
without the hash. the reason this exists is that for some operations we don't need to fetch the hash from disk.
but we can solve this by converting the hash field into a
LazyLock<Hash>
instead, which is then initialized with the hash if missing.This should be solved in multiple steps:
Additional context
No response
The text was updated successfully, but these errors were encountered: