Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-korotya committed Feb 9, 2024
1 parent e213cd4 commit 2e3479b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions contracts/lib/NonMerklizedIssuer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {SmtLib} from "../lib/SmtLib.sol";
import {IdentityLib} from "../lib/IdentityLib.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";


/**
* @dev INonMerklizedIssuer. Interface for non-merklized issuer
*/
Expand All @@ -22,19 +21,20 @@ interface INonMerklizedIssuer {
function getCredential(
uint256 _userId,
uint256 _credentialId
) external returns (
NonMerklizedIssuerLib.CredentialData memory,
uint256[8] memory,
NonMerklizedIssuerLib.SubjectField[] memory
);
)
external
returns (
NonMerklizedIssuerLib.CredentialData memory,
uint256[8] memory,
NonMerklizedIssuerLib.SubjectField[] memory
);

/**
* @dev credentialProtocolVersion. Get version of the protocol
*/
function credentialProtocolVersion() external returns (string memory);
}


/**
* @dev NonMerklizedIssuer. Non-merklized issuer types
*/
Expand All @@ -55,7 +55,7 @@ library NonMerklizedIssuerLib {
uint64 issuanceDate;
string credentialSchema;
}

/**
* @dev SubjectField credential subject for the credential
* key - name of the field
Expand Down

0 comments on commit 2e3479b

Please sign in to comment.