Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
frangio authored Feb 21, 2023
1 parent 0e86f78 commit 6cbcad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/utils/cryptography/SignatureChecker.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ library SignatureChecker {
function isValidSignatureNow(address signer, bytes32 hash, bytes memory signature) internal view returns (bool) {
(address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature);
return (error == ECDSA.RecoverError.NoError && recovered == signer) ||
isValidERC1271SignatureNow(signer,hash,signature);
isValidERC1271SignatureNow(signer, hash, signature);
}


Expand Down

0 comments on commit 6cbcad0

Please sign in to comment.