rlp header should be hex string

This commit is contained in:
2024-12-05 18:23:21 -06:00
parent 847e020e6e
commit dc2986f1eb
4 changed files with 12 additions and 3 deletions
+1 -1
View File
@@ -16,6 +16,6 @@ export type ACNPacket<PreambleType, PDUBlockType, PostambleType> = {
export type RootLayerPDU = {
vector: number;
header: Uint8Array;
header: string;
data: Uint8Array;
};