Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion crates/types/src/proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub struct EvmProof {
}

/// Stat for the insight of stark proofing
#[derive(Clone, Serialize, Deserialize)]
#[derive(Clone, Serialize, Deserialize, Default)]
pub struct StarkProofStat {
/// total cycles
pub total_cycles: u64,
Expand All @@ -57,6 +57,7 @@ pub struct StarkProof {
pub public_values: Vec<BabyBear>,
//pub exe_commitment: [u32; 8],
//pub vm_commitment: [u32; 8],
#[serde(default)]
pub stat: StarkProofStat,
}

Expand Down