-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathv2_get_pool_info.rs
40 lines (36 loc) · 1.15 KB
/
v2_get_pool_info.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
//! Test the `GetPoolInfo` endpoint.
use anyhow::Context;
use clap::AppSettings;
use concordium_base::hashes::BlockHash;
use concordium_rust_sdk::{types::BakerId, v2};
use structopt::StructOpt;
#[derive(StructOpt)]
struct App {
#[structopt(
long = "node",
help = "GRPC interface of the node.",
default_value = "http://localhost:20000"
)]
endpoint: v2::Endpoint,
#[structopt(long = "block", help = "Block to query in.")]
block: Option<BlockHash>,
#[structopt(long = "baker-id", help = "Pool identifier.")]
baker_id: BakerId,
}
#[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 block_ident = app
.block
.map_or(v2::BlockIdentifier::LastFinal, v2::BlockIdentifier::Given);
let status = client.get_pool_info(&block_ident, app.baker_id).await?;
println!("{:#?}", status);
Ok(())
}