From 3405c9c345025404114d974be63790dacd0949e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Lesaege?= Date: Tue, 26 Dec 2017 18:49:00 +0100 Subject: [PATCH] Remove part of a comment This function refers to the actual token, not the clone. This mistake must have been made by copying https://github.com/Giveth/minime/blob/master/contracts/MiniMeToken.sol#L342 --- contracts/MiniMeToken.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/MiniMeToken.sol b/contracts/MiniMeToken.sol index 14be148d..5cb7ddd4 100644 --- a/contracts/MiniMeToken.sol +++ b/contracts/MiniMeToken.sol @@ -408,7 +408,7 @@ contract MiniMeToken is Controlled { /// @notice Enables token holders to transfer their tokens freely if true - /// @param _transfersEnabled True if transfers are allowed in the clone + /// @param _transfersEnabled True if transfers are allowed function enableTransfers(bool _transfersEnabled) public onlyController { transfersEnabled = _transfersEnabled; }