pub struct GetBlockchainInfoResult {Show 17 fields
pub chain: String,
pub blocks: u64,
pub headers: u64,
pub bestblockhash: Sha256dHash,
pub difficulty: f64,
pub mediantime: u64,
pub verificationprogress: f64,
pub initialblockdownload: bool,
pub chainwork: String,
pub size_on_disk: u64,
pub pruned: bool,
pub pruneheight: Option<u64>,
pub automatic_pruning: Option<bool>,
pub prune_target_size: Option<u64>,
pub softforks: Vec<Softfork>,
pub bip9_softforks: Value,
pub warnings: String,
}Expand description
Models the result of “getblockchaininfo”
Fields
chain: StringCurrent network name as defined in BIP70 (main, test, regtest)
blocks: u64The current number of blocks processed in the server
headers: u64The current number of headers we have validated
bestblockhash: Sha256dHashThe hash of the currently best block
difficulty: f64The current difficulty
mediantime: u64Median time for the current best block
verificationprogress: f64Estimate of verification progress [0..1]
initialblockdownload: boolEstimate of whether this node is in Initial Block Download mode
chainwork: StringTotal amount of work in active chain, in hexadecimal
size_on_disk: u64The estimated size of the block and undo files on disk
pruned: boolIf the blocks are subject to pruning
pruneheight: Option<u64>Lowest-height complete block stored (only present if pruning is enabled)
automatic_pruning: Option<bool>Whether automatic pruning is enabled (only present if pruning is enabled)
prune_target_size: Option<u64>The target size used by pruning (only present if automatic pruning is enabled)
softforks: Vec<Softfork>Status of softforks in progress
bip9_softforks: ValueStatus of BIP9 softforks in progress
warnings: StringAny network and blockchain warnings.
Trait Implementations
sourceimpl Clone for GetBlockchainInfoResult
impl Clone for GetBlockchainInfoResult
sourcefn clone(&self) -> GetBlockchainInfoResult
fn clone(&self) -> GetBlockchainInfoResult
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more