refactor(tx_wrapper): Use derive(TransactionEnvelope)

This commit is contained in:
sprites0
2025-07-03 04:01:42 +00:00
parent 0bdd9080d1
commit 12d7d5a8b4
5 changed files with 100 additions and 200 deletions

View File

@ -139,7 +139,7 @@ where
inner: BlockBody {
transactions: transactions
.into_transactions()
.map(|tx| TransactionSigned(tx.inner.into_inner().into()))
.map(|tx| TransactionSigned::Default(tx.inner.into_inner().into()))
.collect(),
ommers: Default::default(),
withdrawals,