1use chia_streamable_macro::streamable; 2 3#[streamable] 4pub struct PartialProof { 5 #[cfg_attr(feature = "serde", serde(with = "serde_arrays"))] 6 proof_fragments: [u64; 64], 7}