File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ async function generateSolidityVerifier(
116116 switch ( flavor ) {
117117 case "ultra_keccak_honk" : {
118118 const backend = new UltraHonkBackend ( program . bytecode ) ;
119- const vk = await backend . getVerificationKey ( { keccak : true } ) ;
119+ const vk = await backend . getVerificationKey ( { keccakZK : true } ) ;
120120 verifier = await backend . getSolidityVerifier ( vk ) ;
121121 break ;
122122 }
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ describe("Integration tests examples", function () {
5858 const input = { x : 1 , y : 2 } ;
5959 const { witness } = await noir . execute ( input ) ;
6060 const { proof, publicInputs } = await backend . generateProof ( witness , {
61- keccak : true ,
61+ keccakZK : true ,
6262 } ) ;
6363 // it matches because we marked y as `pub` in `main.nr`
6464 expect ( BigInt ( publicInputs [ 0 ] ) ) . to . eq ( BigInt ( input . y ) ) ;
@@ -73,7 +73,7 @@ describe("Integration tests examples", function () {
7373 proof,
7474 publicInputs : [ String ( input . y ) ] ,
7575 } ,
76- { keccak : true } ,
76+ { keccakZK : true } ,
7777 ) ;
7878 expect ( resultJs ) . to . eq ( true ) ;
7979 } ) ;
You can’t perform that action at this time.
0 commit comments