fix: correct TxTypeCustom extended identifier decoding (#18769)

This commit is contained in:
James Niken
2025-09-29 16:38:37 +02:00
committed by GitHub
parent b940d0a9fb
commit 564e3a67fc

View File

@@ -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)
}
}
}
}