Skip to content

Commit 1d6f53d

Browse files
committed
chore: small typo fixes
1 parent 8814baf commit 1d6f53d

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

examples/L2/contracts/.env.holesky

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ OWNER_ADDRESS=<CONTRACT_OWNER_ADDRESS>
99
PRIVATE_KEY=<PRIVATE_KEY_TO_DEPLOY>
1010
# This is the aligned proof aggregator address in holesky see:
1111
# https://docs.alignedlayer.com/guides/7_contract_addresses
12-
ALIGNED_PROOF_AGGREGATOR_ADDRESS=0x7Eace34A8d4C4CacE633946C6F7CF4BeF3F33513
12+
ALIGNED_PROOF_AGGREGATOR_ADDRESS=0xe84CD4084d8131841CE6DC265361f81F4C59a1d4
1313
ETHERSCAN_API_KEY=<YOUR_ETHERSCAN_API_KEY>

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub async fn start_l2(config: Config) {
2929
let transfers = generate_random_transfers(&db, 10);
3030

3131
// 2. Call zkvm and transfer to perform and verify
32-
info!("Staring prover");
32+
info!("Starting prover");
3333
let (mut proof, vk) = prove_state_transition(&db, transfers.clone());
3434
let ProgramOutput {
3535
initial_state_merkle_root,
@@ -80,7 +80,10 @@ pub async fn start_l2(config: Config) {
8080
let receipt =
8181
send_state_transition_to_chain(&config, proof.public_values.to_vec(), merkle_path).await;
8282

83-
info!("State update in contracts tx receipt {:?}", receipt);
83+
info!(
84+
"State update in contracts tx hash: {:?}",
85+
receipt.transaction_hash
86+
);
8487

8588
// Finally save the db to a file to be retrieved later
8689
db.save().unwrap();

0 commit comments

Comments
 (0)