docs: correct Payment tx type from 0x7E to 0x2A (#19255)

This commit is contained in:
Fallengirl
2025-10-23 13:20:59 +02:00
committed by GitHub
parent 4548209e7b
commit b2236d1db7

View File

@@ -17,7 +17,7 @@ pub enum CustomPooledTransaction {
/// A regular Optimism transaction as defined by [`OpPooledTransaction`].
#[envelope(flatten)]
Op(OpPooledTransaction),
/// A [`TxPayment`] tagged with type 0x7E.
/// A [`TxPayment`] tagged with type 0x2A (decimal 42).
#[envelope(ty = 42)]
Payment(Signed<TxPayment>),
}