Skip to content

Commit 1c3b245

Browse files
committed
fix: revert CI changes, they are in another pr
1 parent f05869e commit 1c3b245

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

Makefile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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}"; \

batcher/aligned-sdk/src/sdk.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)