Fix return value

This commit is contained in:
alrevuelta 2024-05-22 13:04:29 +02:00
parent 8e3d390f8f
commit 6261380291
No known key found for this signature in database
GPG Key ID: F345C9F3CCDB886E

View File

@ -161,7 +161,7 @@ func (r *RLN) GenerateRLNProof(input []byte) ([]byte, error) {
func (r *RLN) GenerateRLNProofWithWitness(input []byte) ([]byte, error) {
// TODO: Temporally disabled. In RLNv2 this is not enabled yet.
return errors.New("not implemented")
return nil, errors.New("not implemented")
/*
inputBuffer := toCBufferPtr(input)