Remove unused code

This commit is contained in:
Jacob Evans 2019-03-20 17:19:17 +01:00
parent 8b70762e34
commit 38ac2e80ed
No known key found for this signature in database
GPG Key ID: 2036DA2ADDFB0842

View File

@ -42,19 +42,6 @@ contract UntransferrableDummyERC20Token is
) )
{} {}
// /// @dev send `value` token to `to` from `msg.sender`
// /// @param _to The address of the recipient
// /// @param _value The amount of token to be transferred
// function transfer(address _to, uint256 _value)
// external
// returns (bool)
// {
// require(
// false,
// "TRANSFER_DISABLED"
// );
// }
/// @dev send `value` token to `to` from `from` on the condition it is approved by `from` /// @dev send `value` token to `to` from `from` on the condition it is approved by `from`
/// @param _from The address of the sender /// @param _from The address of the sender
/// @param _to The address of the recipient /// @param _to The address of the recipient