mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-08 03:51:22 +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>>
|
||
|
}
|