Skip to content

Commit

Permalink
fix: update L1 height in light client proof fetching
Browse files Browse the repository at this point in the history
  • Loading branch information
ozankaymak committed Feb 26, 2025
1 parent 4e977a6 commit e0bd61b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bridge-circuit-host/host/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ async fn main() {
let signature = sign_digits(&params, &secret_key, &compressed_proof_and_total_work);


let l1_hegith = 70029;
let (light_client_proof, lcp_receipt) = fetch_light_client_proof(l1_hegith).await.unwrap();
let l1_height = 71610;
let (light_client_proof, lcp_receipt) = fetch_light_client_proof(l1_height).await.unwrap();

let storage_proof = fetch_storage_proof(&light_client_proof.l2_height).await;
let block_vec = TESTNET_BLOCK_47029.to_vec();
Expand Down

0 comments on commit e0bd61b

Please sign in to comment.