Describe the feature
We can avoid this clone by wrapping the tx into Arc and sending it to both prewarm and execution channels
|
let _ = prewarm_tx.send(tx.clone()); |
This should work, because none of the transaction traits functions expect an owned value.
Additional context
No response
Describe the feature
We can avoid this clone by wrapping the
txintoArcand sending it to both prewarm and execution channelsreth/crates/engine/tree/src/tree/payload_processor/mod.rs
Line 322 in 397a30d
This should work, because none of the transaction traits functions expect an owned value.
Additional context
No response