pub trait InformantData: Send + Sync {
    fn executes_transactions(&self) -> bool;
fn is_major_importing(&self) -> bool;
fn report(&self) -> Report; }
Expand description

Something which can provide data to the informant.

Required methods

Whether it executes transactions

Whether it is currently importing (also included in Report)

Generate a report of blockchain status, memory usage, and sync info.

Implementors