contract ClaimIssuerTrick { function isClaimValid( address _identity, uint256 claimTopic, bytes calldata sig, bytes calldata data) public view returns (bool) { if (msg.sender == _identity) { return true; } revert('ERROR'); } }