Skip to content

Commit

Permalink
fix seed
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyr-basiuk committed Sep 7, 2024
1 parent af367be commit 6f78941
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ describe('onchain revocation checks', () => {
});

const { did: issuerDID, credential: issuerAuthCredential } = await createIdentity(idWallet, {
seed: byteEncoder.encode('seedseedseedseedseedseedseedseed'),
seed: byteEncoder.encode('seedseedseedseedseedseed11issuer'),
revocationOpts: {
id,
type: CredentialStatusType.Iden3OnchainSparseMerkleTreeProof2023,
Expand All @@ -350,7 +350,7 @@ describe('onchain revocation checks', () => {
const callBackUseCase = new Promise((resolve) => {
(async () => {
const { did: userDID, credential: userAuthCredential } = await createIdentity(idWallet, {
seed: byteEncoder.encode('seedseedseedseedseedseedseedseed'),
seed: byteEncoder.encode('seedseedseedseedseedseedseeduser'),
revocationOpts: {
id,
type: CredentialStatusType.Iden3OnchainSparseMerkleTreeProof2023,
Expand Down

0 comments on commit 6f78941

Please sign in to comment.