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
inputs
.into_iter()
.map(|(header, transactions)| {
(header, transactions.into_iter().map(|tx| tx.0).collect())
(header, transactions.into_iter().map(|tx| tx.into_inner()).collect())
})
.collect(),
)?;