zk/mint: Print proof size in circuit test unit.

This commit is contained in:
parazyd
2022-06-18 19:12:31 +02:00
parent be8154223d
commit 15d2d1a3b8

View File

@@ -394,6 +394,8 @@ mod tests {
proof.verify(&verifying_key, &public_inputs)?;
println!("Proof verified [{:?}]", now.elapsed());
println!("Proof size [{} kB]", proof.as_ref().len() as f64 / 1024.0);
Ok(())
}
}