From 3bfe5af3b37e3aa6b33a3c6cf2cd8f8b4d9f9fb0 Mon Sep 17 00:00:00 2001 From: "Chris T." Date: Fri, 19 Jul 2024 13:03:46 -0700 Subject: [PATCH] chore: bump tendermint input block height (#1130) --- examples/tendermint/script/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/tendermint/script/src/main.rs b/examples/tendermint/script/src/main.rs index 6df1ddd1c5..4184fadd0c 100644 --- a/examples/tendermint/script/src/main.rs +++ b/examples/tendermint/script/src/main.rs @@ -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)