File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed
Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -1060,15 +1060,11 @@ docker_verify_proof_submission_success:
10601060 sleep $(DOCKER_PROOFS_WAIT_TIME ) ; \
10611061 for proof in ./aligned_verification_data/* .cbor; do \
10621062 echo " Verifying proof $$ {proof} \n" ; \
1063- cat $$ {proof}; \
1064- cat $$ {proof%.cbor}.json; \
10651063 verification=$$(aligned verify-proof-onchain \
10661064 --aligned-verification-data $$ {proof} \
10671065 --rpc_url $$(echo $(DOCKER_RPC_URL ) ) 2>&1 ); \
10681066 if echo " $$ verification" | grep -q not; then \
10691067 echo " ERROR: Proof verification failed for $$ {proof}" ; \
1070- echo " With error:" ; \
1071- echo " $$ verification" ; \
10721068 exit 1; \
10731069 elif echo " $$ verification" | grep -q verified; then \
10741070 echo " Proof verification succeeded for $$ {proof}" ; \
Original file line number Diff line number Diff line change @@ -457,9 +457,6 @@ async fn _is_proof_verified(
457457 let contract_address = network. clone ( ) . get_aligned_service_manager_address ( ) ;
458458 let payment_service_addr = network. get_batcher_payment_service_address ( ) ;
459459
460- info ! ( "contract_address: {}" , contract_address) ;
461- info ! ( "payment_service_addr: {}" , payment_service_addr) ;
462-
463460 // All the elements from the merkle proof have to be concatenated
464461 let merkle_proof: Vec < u8 > = aligned_verification_data
465462 . batch_inclusion_proof
You can’t perform that action at this time.
0 commit comments