Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mm-zk committed Oct 2, 2023
1 parent 1ea11ce commit 45d7f4d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions infrastructure/zk/src/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,11 @@ async function compareVerificationKeys() {
}
let dbHash = '0x' + bytesToHex(protocol_version.rows[0].recursion_scheduler_level_vk_hash);


console.log(`Verification key in database is ${dbHash}`);
if (dbHash != verificationKeyHash) {
console.log(`${redStart}Verification hash in DB differs from the one in contract.${resetColor} State keeper might not send prove requests.`)
console.log(
`${redStart}Verification hash in DB differs from the one in contract.${resetColor} State keeper might not send prove requests.`
);
}
}

Expand Down Expand Up @@ -206,4 +207,4 @@ export async function statusProver() {

export const command = new Command('status').description('show status of the local system');

command.command('prover').action(statusProver);
command.command('prover').action(statusProver);

0 comments on commit 45d7f4d

Please sign in to comment.