lighthouse-pulse/lighthouse/sync/messages.rs
2018-09-09 16:36:00 +02:00

13 lines
199 B
Rust

pub enum SyncEventType {
Invalid,
PeerConnect,
PeerDrop,
ReceiveBlocks,
ReceiveAttestationRecords,
}
pub struct SyncEvent {
event: SyncEventType,
data: Option<Vec<u8>>
}