Skip to content

Commit 3bfe5af

Browse files
authored
chore: bump tendermint input block height (#1130)
1 parent 5de8269 commit 3bfe5af

File tree

1 file changed

+2
-2
lines changed
  • examples/tendermint/script/src

1 file changed

+2
-2
lines changed

examples/tendermint/script/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ async fn get_light_blocks() -> (LightBlock, LightBlock) {
2929
let latest_commit = fetch_latest_commit(&client, &url).await.unwrap();
3030
let block: u64 = latest_commit.result.signed_header.header.height.into();
3131
println!("Latest block: {}", block);
32-
let light_block_1 = fetch_light_block(2029100, peer_id, BASE_URL)
32+
let light_block_1 = fetch_light_block(2279100, peer_id, BASE_URL)
3333
.await
3434
.expect("Failed to generate light block 1");
35-
let light_block_2 = fetch_light_block(2029130, peer_id, BASE_URL)
35+
let light_block_2 = fetch_light_block(2279130, peer_id, BASE_URL)
3636
.await
3737
.expect("Failed to generate light block 2");
3838
(light_block_1, light_block_2)

0 commit comments

Comments
 (0)