Skip to content

Commit 6f3561c

Browse files
committed
chore: fix typo in logs and makefile surpress command output
1 parent 2b11569 commit 6f3561c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/L2/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SHELL := /bin/bash
44

55
gen_env_l2_holesky:
6-
cp .env.holesky .env
6+
@cp .env.holesky .env
77

88
run_l2:
99
@cd crates/l2 && cargo run --release --bin main
@@ -13,7 +13,7 @@ generate_program_id:
1313
@cat ./crates/l2/programs_ids.json
1414

1515
gen_env_contract_holesky:
16-
cp ./contracts/.env.holesky ./contracts/.env
16+
@cp ./contracts/.env.holesky ./contracts/.env
1717

1818
deploy_contract:
1919
@. ./contracts/.env && . ./contracts/scripts/deploy.sh

examples/L2/crates/l2/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ pub async fn start_l2(config: Config) {
7373
info!("Proof submitted");
7474

7575
// 5. Wait until proof is aggregated
76-
info!("Waiting until is proof is aggregated...");
76+
info!("Waiting until proof is aggregated...");
7777
let merkle_path = wait_until_proof_is_aggregated(&config, &proof, &vk).await;
7878
info!("Proof has been aggregated on aligned, about to send update to chain...");
7979

0 commit comments

Comments
 (0)