1use chia_streamable_macro::streamable; 2 3#[streamable] 4pub struct TimestampedPeerInfo { 5 host: String, 6 port: u16, 7 timestamp: u64, 8}