1 2 3 4 5 6 7 8 9
use dg_xch_macros::ChiaSerial; use serde::{Deserialize, Serialize}; #[derive(ChiaSerial, Clone, PartialEq, Eq, Serialize, Deserialize, Debug)] pub struct VdfProof { pub normalized_to_identity: bool, pub witness: Vec<u8>, pub witness_type: u8, }