Skip to content

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
ypatil12 committed Oct 10, 2024
1 parent 8e5fbca commit 8cbee81
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/contracts/mixins/SignatureUtils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,6 @@ abstract contract SignatureUtils is ISignatureUtils {

/// @dev Helper for checking if a signature is valid, reverts if not valid.
function _checkIsValidSignatureNow(address signer, bytes32 signableDigest, bytes memory signature) internal view {
require(
signer.isValidSignatureNow(signableDigest, signature),
InvalidSignature()
);
require(signer.isValidSignatureNow(signableDigest, signature), InvalidSignature());
}
}

0 comments on commit 8cbee81

Please sign in to comment.