Skip to content

Commit

Permalink
test: skip signature validation
Browse files Browse the repository at this point in the history
  • Loading branch information
smrz2001 committed Feb 26, 2024
1 parent 41e50f4 commit 5e609d9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/common/src/ceramic-signer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ export class CeramicSigner implements IntoSigner {
}

async verifyJWS(jws: string | DagJWS, options?: VerifyJWSOptions): Promise<VerifyJWSResult> {
await this.assertRequirements()
return this.reqs.verifyJWS(jws, options)
// await this.assertRequirements()
// return this.reqs.verifyJWS(jws, options)
return null
}
}

0 comments on commit 5e609d9

Please sign in to comment.