Skip to content

Commit

Permalink
fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
olomix committed Nov 30, 2023
1 parent e4ad2fb commit ae50727
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inputs_sig.go
Original file line number Diff line number Diff line change
Expand Up @@ -1450,7 +1450,7 @@ func claimWithSigAndMtpProofFromObj(ctx context.Context, cfg EnvConfig,
switch proofType {
case circuits.Iden3SparseMerkleTreeProofType:
claimWithMtpProof, err := claimWithMtpProofFromObj(ctx, cfg, w3cCred,
skipClaimRevocationCheck)
skipClaimRevocationCheck, nil)
if err != nil {
return circuits.ClaimWithSigAndMTPProof{}, proofType, err
}
Expand All @@ -1464,7 +1464,7 @@ func claimWithSigAndMtpProofFromObj(ctx context.Context, cfg EnvConfig,
return v3ProofFromSig(claimWithSigProof), proofType, nil
case "":
claimWithMtpProof, err := claimWithMtpProofFromObj(ctx, cfg, w3cCred,
skipClaimRevocationCheck)
skipClaimRevocationCheck, nil)
var tErr errProofNotFound
switch {
case errors.As(err, &tErr):
Expand Down

0 comments on commit ae50727

Please sign in to comment.