README.md:
  122: - Does it use a timelock function?: Yes but only for contract ownership management and not business critical functions.
 function _setupDelayForRenouncingOwnership(uint256 _delay) internal {
        delay = _delay;
    }
contracts/OwnableTwoSteps.sol:
  40:      *         Delay (for the timelock) must be set by the contract that inherits from this.
contracts/OwnableTwoSteps.sol:

    // Delay for the timelock (in seconds)
    uint256 public delay;

  43       */
  44:     constructor(uint256 _delay) {
  45:         owner = msg.sender;
  +           delay = _delay;
  46:     }
  47: 
  48      /**
