Skip to content

Commit

Permalink
Removing unnecessary mask
Browse files Browse the repository at this point in the history
  • Loading branch information
remedcu committed Jan 10, 2025
1 parent 8f2d302 commit 7be3379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/handler/extensible/SignatureVerifierMuxer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ abstract contract SignatureVerifierMuxer is ExtensibleBase, ERC1271, ISignatureV
/* solhint-disable no-inline-assembly */
/// @solidity memory-safe-assembly
assembly {
sigSelector := and(calldataload(signature.offset), 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000)
sigSelector := calldataload(signature.offset)
}
/* solhint-enable no-inline-assembly */

Expand Down

0 comments on commit 7be3379

Please sign in to comment.