File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
packages/protocol/src/prover/block Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import {
13
13
CompilableModule ,
14
14
CompileArtifact ,
15
15
CompileRegistry ,
16
+ log ,
16
17
MAX_FIELD ,
17
18
PlainZkProgram ,
18
19
provableMethod ,
@@ -599,7 +600,7 @@ export class BlockProverProgrammable extends ZkProgrammable<
599
600
) ;
600
601
const skipTransactionProofVerification = isEmptyTransition ;
601
602
const verifyTransactionProof = isEmptyTransition . not ( ) ;
602
- Provable . log ( "VerifyIf TxProof" , verifyTransactionProof ) ;
603
+ log . provable . debug ( "VerifyIf TxProof" , verifyTransactionProof ) ;
603
604
transactionProof . verifyIf ( verifyTransactionProof ) ;
604
605
605
606
// 2. Execute beforeBlock hooks
@@ -714,7 +715,7 @@ export class BlockProverProgrammable extends ZkProgrammable<
714
715
// otherwise we can input a dummy proof
715
716
const batchesEmpty = state . pendingSTBatches . commitment . equals ( Field ( 0 ) ) ;
716
717
const verifyStProof = deferSTProof . not ( ) . and ( batchesEmpty . not ( ) ) ;
717
- Provable . log ( "Verify STProof" , verifyStProof ) ;
718
+ log . provable . debug ( "Verify STProof" , verifyStProof ) ;
718
719
stateTransitionProof . verifyIf ( verifyStProof ) ;
719
720
720
721
// Apply STProof if not deferred
You can’t perform that action at this time.
0 commit comments