-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathv2_get_block_finalization_summary.rs
44 lines (38 loc) · 1.17 KB
/
v2_get_block_finalization_summary.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! Test the `GetBlockFinalizationSummary` endpoint.
//! Query all blocks from genesis and print their height, hash, and whether they
//! contain a finalization record.
use anyhow::Context;
use clap::AppSettings;
use structopt::StructOpt;
use concordium_rust_sdk::v2;
#[derive(StructOpt)]
struct App {
#[structopt(
long = "node",
help = "GRPC interface of the node.",
default_value = "http://localhost:20000"
)]
endpoint: v2::Endpoint,
}
#[tokio::main(flavor = "multi_thread")]
async fn main() -> anyhow::Result<()> {
let app = {
let app = App::clap().global_setting(AppSettings::ColoredHelp);
let matches = app.get_matches();
App::from_clap(&matches)
};
let mut client = v2::Client::new(app.endpoint)
.await
.context("Cannot connect.")?;
let mut receiver = client.get_finalized_blocks_from(0u64.into()).await?;
while let Some(v) = receiver.next().await {
let fin_data = client.get_block_finalization_summary(v.block_hash).await?;
println!(
"{}: {}: {}",
v.height,
v.block_hash,
fin_data.response.is_some()
)
}
Ok(())
}