Skip to content

Commit

Permalink
ON-444: remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Lima committed Aug 14, 2023
1 parent 1e1aa12 commit 3dede3a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions contracts/RolesRegistry/RolesRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
pragma solidity 0.8.9;

import { IERC7432 } from "./interfaces/IERC7432.sol";
import 'hardhat/console.sol';

contract RolesRegistry is IERC7432 {
// owner => user => tokenAddress => tokenId => role => struct(expirationDate, data)
Expand All @@ -26,7 +25,6 @@ contract RolesRegistry is IERC7432 {
uint64 _expirationDate,
bytes calldata _data
) external validExpirationDate(_expirationDate) {
console.logBytes4(type(IERC7432).interfaceId);
roleAssignments[msg.sender][_grantee][_tokenAddress][_tokenId][_role] = RoleData(_expirationDate, _data);
lastRoleAssignment[msg.sender][_tokenAddress][_tokenId][_role] = _grantee;
emit RoleGranted(_role, _tokenAddress, _tokenId, _grantee, _expirationDate, _data);
Expand Down

0 comments on commit 3dede3a

Please sign in to comment.