Skip to content

Commit

Permalink
update circuit inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
remicolin committed Aug 5, 2024
1 parent cec55f9 commit ac26f79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion circuits/tests/dsc/dsc_sha1_rsa_2048.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ describe('DSC chain certificate - SHA1 RSA', function () {
});

it('should compute the correct output', async () => {
const witness = await circuit.calculateWitness(inputs, true);
const witness = await circuit.calculateWitness(inputs.inputs, true);
});
});
2 changes: 1 addition & 1 deletion circuits/tests/dsc/dsc_sha256_rsa_2048.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ describe('DSC chain certificate - SHA256 RSA', function () {
});

it('should compute the correct output', async () => {
const witness = await circuit.calculateWitness(inputs, true);
const witness = await circuit.calculateWitness(inputs.inputs, true);
});
});
2 changes: 1 addition & 1 deletion circuits/tests/dsc/dsc_sha256_rsapss_2048.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ describe('DSC chain certificate - SHA256 RSA-PSS', function () {
});

it('should compute the correct output', async () => {
const witness = await circuit.calculateWitness(inputs, true);
const witness = await circuit.calculateWitness(inputs.inputs, true);
});
});

0 comments on commit ac26f79

Please sign in to comment.