helium-api 3.3.1

An async library for the Helium blockchain REST API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Deserialize, Serialize};

#[derive(Clone, Serialize, Deserialize, Debug)]
pub struct ConsensusGroupFailureV1 {
    pub delay: u64,
    pub hash: String,
    pub block: u64,
    pub height: u64,
    pub members: Vec<String>,
    pub failed_members: Vec<String>,
    pub signatures: Vec<String>,
}