Skip to content

Commit

Permalink
chore: bump tendermint input block height (#1130)
Browse files Browse the repository at this point in the history
  • Loading branch information
ctian1 authored and huitseeker committed Aug 28, 2024
1 parent 80276ef commit 424f6a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/tendermint/script/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ async fn get_light_blocks() -> (LightBlock, LightBlock) {
let latest_commit = fetch_latest_commit(&client, &url).await.unwrap();
let block: u64 = latest_commit.result.signed_header.header.height.into();
println!("Latest block: {}", block);
let light_block_1 = fetch_light_block(2029100, peer_id, BASE_URL)
let light_block_1 = fetch_light_block(2279100, peer_id, BASE_URL)
.await
.expect("Failed to generate light block 1");
let light_block_2 = fetch_light_block(2029130, peer_id, BASE_URL)
let light_block_2 = fetch_light_block(2279130, peer_id, BASE_URL)
.await
.expect("Failed to generate light block 2");
(light_block_1, light_block_2)
Expand Down

0 comments on commit 424f6a1

Please sign in to comment.