Skip to content

Commit

Permalink
add linter
Browse files Browse the repository at this point in the history
  • Loading branch information
vmidyllic committed Jun 29, 2023
1 parent efb862e commit a267fd8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/identity/identity-wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ export class IdentityWallet implements IIdentityWallet {
merklizedRootPosition: this.defineMTRootPosition(jsonSchema, req.merklizedRootPosition),
updatable: false,
version: 0,
merklizeOpts:opts
merklizeOpts: opts
};

let jsonLDCtx: object;
Expand Down
9 changes: 4 additions & 5 deletions src/proof/proof-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ export class ProofService implements IProofService {
proofReq.query,
preparedCredential.credential,
preparedCredential.credentialCoreClaim,
{documentLoader:this._ldLoader}
{ documentLoader: this._ldLoader }
);
circuitInputs.query = query;
circuitInputs.claim = {
Expand Down Expand Up @@ -420,8 +420,7 @@ export class ProofService implements IProofService {
proofReq.query,
preparedCredential.credential,
preparedCredential.credentialCoreClaim,
{documentLoader:this._ldLoader}

{ documentLoader: this._ldLoader }
);
circuitInputs.query = query;
circuitInputs.claim = {
Expand Down Expand Up @@ -467,7 +466,7 @@ export class ProofService implements IProofService {
proofReq.query,
preparedCredential.credential,
preparedCredential.credentialCoreClaim,
{documentLoader:this._ldLoader}
{ documentLoader: this._ldLoader }
);
circuitInputs.query = query;
circuitInputs.currentTimeStamp = getUnixTimestamp(new Date());
Expand Down Expand Up @@ -509,7 +508,7 @@ export class ProofService implements IProofService {
proofReq.query,
preparedCredential.credential,
preparedCredential.credentialCoreClaim,
{documentLoader:this._ldLoader}
{ documentLoader: this._ldLoader }
);
circuitInputs.query = query;
circuitInputs.currentTimeStamp = getUnixTimestamp(new Date());
Expand Down

0 comments on commit a267fd8

Please sign in to comment.