From 4d3f1be4c7784c0317893fa65c7f38a4b57934e4 Mon Sep 17 00:00:00 2001 From: satyam Date: Mon, 27 May 2019 06:28:54 +0530 Subject: [PATCH] cleanup --- contracts/tokens/SecurityToken.sol | 8 -------- 1 file changed, 8 deletions(-) diff --git a/contracts/tokens/SecurityToken.sol b/contracts/tokens/SecurityToken.sol index 65ab132d9..eea9df9f1 100644 --- a/contracts/tokens/SecurityToken.sol +++ b/contracts/tokens/SecurityToken.sol @@ -163,14 +163,6 @@ contract SecurityToken is ERC20, ReentrancyGuard, SecurityTokenStorage, IERC1594 require(isModule(msg.sender, _type)); } - /** - * @dev Throws if called by any account other than the STFactory. - */ - modifier onlyTokenFactory() { - require(msg.sender == tokenFactory); - _; - } - modifier checkGranularity(uint256 _value) { require(_value % granularity == 0, "Invalid granularity"); _;