chia_protocol/
peer_info.rs

1
2
3
4
5
6
7
8
use chia_streamable_macro::streamable;

#[streamable]
pub struct TimestampedPeerInfo {
    host: String,
    port: u16,
    timestamp: u64,
}