chore: fix incorrect hex value in comment (0x2A instead of 0x7E) (#19181)

This commit is contained in:
Brawn
2025-10-21 15:45:37 +03:00
committed by GitHub
parent dbceffdcf4
commit 93b63bc765

View File

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