Skip to content
This repository was archived by the owner on Jan 9, 2026. It is now read-only.

Commit 564e3a6

Browse files
authored
fix: correct TxTypeCustom extended identifier decoding (paradigmxyz#18769)
1 parent b940d0a commit 564e3a6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/custom-node/src/primitives/tx_type.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ impl Compact for TxTypeCustom {
3030
},
3131
buf,
3232
),
33-
v => Self::from_compact(buf, v),
33+
v => {
34+
let (inner, buf) = TxTypeCustom::from_compact(buf, v);
35+
(inner, buf)
36+
}
3437
}
3538
}
3639
}

0 commit comments

Comments
 (0)