Skip to content

Commit

Permalink
do not ser vs in posproof
Browse files Browse the repository at this point in the history
  • Loading branch information
alex v committed Dec 15, 2024
1 parent b98e42d commit b573089
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/blsct/pos/proof.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ class ProofOfStake
void Serialize(Stream& s) const
{
::Serialize(s, setMemProof);
::Serialize(s, rangeProof);
::Serialize(s, Using<bulletproofs_plus::RangeProofWithoutVs<Arith>>(rangeProof));
}

template <typename Stream>
void Unserialize(Stream& s)
{
::Unserialize(s, setMemProof);
::Unserialize(s, rangeProof);
::Unserialize(s, Using<bulletproofs_plus::RangeProofWithoutVs<Arith>>(rangeProof));
}

SetProof setMemProof;
Expand Down

0 comments on commit b573089

Please sign in to comment.