mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-07 03:22:20 +00:00
13 lines
199 B
Rust
13 lines
199 B
Rust
pub enum SyncEventType {
|
|
Invalid,
|
|
PeerConnect,
|
|
PeerDrop,
|
|
ReceiveBlocks,
|
|
ReceiveAttestationRecords,
|
|
}
|
|
|
|
pub struct SyncEvent {
|
|
event: SyncEventType,
|
|
data: Option<Vec<u8>>
|
|
}
|