You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if len(proof.Bsb22Commitments) > 0 {
tmp32 = proof.BatchedProof.ClaimedValues[7].Bytes()
res = append(res, tmp32[:]...)
for _, bc := range proof.Bsb22Commitments {
tmp64 = bc.RawBytes()
res = append(res, tmp64[:]...)
}
}
Only the proof.BatchedProof.ClaimedValues[7] value is serialised while it should be proof.BatchedProof.ClaimedValues[7:7+nb_bsb22_commitments]
The text was updated successfully, but these errors were encountered:
Only the
proof.BatchedProof.ClaimedValues[7]
value is serialised while it should beproof.BatchedProof.ClaimedValues[7:7+nb_bsb22_commitments]
The text was updated successfully, but these errors were encountered: