From 4eb01b67cb35c64d1a77da0aa974f313a06c365a Mon Sep 17 00:00:00 2001 From: Danish Arora Date: Wed, 11 Jun 2025 17:29:51 +0530 Subject: [PATCH] chore: load in BE instead of LE --- waku/waku_keystore/protocol_types.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waku/waku_keystore/protocol_types.nim b/waku/waku_keystore/protocol_types.nim index 96c19f50e..d3eca46b8 100644 --- a/waku/waku_keystore/protocol_types.nim +++ b/waku/waku_keystore/protocol_types.nim @@ -62,7 +62,7 @@ proc toIdentityCredentials*( @(hexToUint[CredentialByteSize](groupKeys[i][2]).toBytesLE()) ) idCommitment = - IDCommitment(@(hexToUint[CredentialByteSize](groupKeys[i][3]).toBytesLE())) + IDCommitment(@(hexToUint[CredentialByteSize](groupKeys[i][3]).toBytesBE())) groupIdCredentials.add( IdentityCredential( idTrapdoor: idTrapdoor,