From 8bc0cd3d58eb93217921f3184303247f7384f2f9 Mon Sep 17 00:00:00 2001 From: nemo Date: Thu, 21 Oct 2021 15:29:56 -0400 Subject: [PATCH] feat: make PartitionSnarkProof clone-able --- filecoin-proofs/src/types/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/filecoin-proofs/src/types/mod.rs b/filecoin-proofs/src/types/mod.rs index a04280d57..0f44aa56c 100644 --- a/filecoin-proofs/src/types/mod.rs +++ b/filecoin-proofs/src/types/mod.rs @@ -83,6 +83,7 @@ pub struct SealPreCommitPhase1Output { } #[repr(transparent)] +#[derive(Clone, Debug)] pub struct PartitionSnarkProof(pub Vec); pub type SnarkProof = Vec;