Skip to content

Commit 1947524

Browse files
committed
Fix CoseSign.ts Bytes.FromHex reference
1 parent 63451c4 commit 1947524

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/evolution/src/core/message-signing/CoseSign.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ export const COSESignFromCBORBytes = (options: CBOR.CodecOptions = CBOR.CML_DEFA
269269
* @category Schemas
270270
*/
271271
export const COSESignFromCBORHex = (options: CBOR.CodecOptions = CBOR.CML_DEFAULT_OPTIONS) =>
272-
Schema.compose(Bytes.FromHex, COSESignFromCBORBytes(options)).annotations({
272+
Schema.compose(Schema.Uint8ArrayFromHex, COSESignFromCBORBytes(options)).annotations({
273273
identifier: "COSESign.FromCBORHex"
274274
})
275275

0 commit comments

Comments
 (0)