chore: make optypedtx fields private (#14065)

This commit is contained in:
Matthias Seitz
2025-01-29 18:49:09 +01:00
committed by GitHub
parent 9001cc2cec
commit 376a5ddf55
4 changed files with 38 additions and 21 deletions

View File

@ -89,7 +89,7 @@ where
) -> Result<Self::Transaction, Self::Error> {
let from = tx.signer();
let hash = *tx.tx_hash();
let OpTransactionSigned { transaction, signature, .. } = tx.into_tx();
let (transaction, signature) = tx.into_tx().split();
let mut deposit_receipt_version = None;
let mut deposit_nonce = None;