Skip to content

Commit

Permalink
fix seed length
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyr-basiuk committed Sep 6, 2024
1 parent 7be8ef9 commit af367be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/proofs/mtp-onchain.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ describe('mtp onchain proofs', () => {
});

const onChainMerklizedTest = async (circuitId: CircuitId) => {
const seedPhraseIssuer: Uint8Array = byteEncoder.encode('seedseedseedseedseedseedseedissuer');
const seedPhraseIssuer: Uint8Array = byteEncoder.encode('seedseedseedseedseedseedseed1new');
const seedPhrase: Uint8Array = byteEncoder.encode('seedseedseedseedseedseedseeduser');

const { did: userDID } = await idWallet.createIdentity({
Expand Down
2 changes: 1 addition & 1 deletion tests/proofs/mtp.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ describe('mtp proofs', () => {
});

const merklizedTest = async (circuitId: CircuitId) => {
const seedPhraseIssuer: Uint8Array = byteEncoder.encode('seedseedseedseedseedseedseedissuer');
const seedPhraseIssuer: Uint8Array = byteEncoder.encode('seedseedseedseedseedseedseed1new');

const { did: userDID } = await createIdentity(idWallet, {
seed: SEED_USER
Expand Down

0 comments on commit af367be

Please sign in to comment.