mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-10 21:11:22 +00:00
17 lines
305 B
Rust
17 lines
305 B
Rust
|
#[derive(Debug)]
|
||
|
pub struct BatchStats {
|
||
|
pub block_stats: BlockStats,
|
||
|
pub attestation_stats: AttestationStats,
|
||
|
}
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
pub struct BlockStats {
|
||
|
pub num_processed: usize,
|
||
|
pub num_slashings: usize,
|
||
|
}
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
pub struct AttestationStats {
|
||
|
pub num_processed: usize,
|
||
|
}
|