mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-09 23:38:10 -05:00
fix: correct TxTypeCustom extended identifier decoding (#18769)
This commit is contained in:
@@ -30,7 +30,10 @@ impl Compact for TxTypeCustom {
|
||||
},
|
||||
buf,
|
||||
),
|
||||
v => Self::from_compact(buf, v),
|
||||
v => {
|
||||
let (inner, buf) = TxTypeCustom::from_compact(buf, v);
|
||||
(inner, buf)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user