diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-08-02 03:57:12 +0800 |
---|---|---|
committer | Daniel Kirchner <daniel@ekpyron.org> | 2018-08-02 03:57:12 +0800 |
commit | 8781990ff3a70934d5dcfad50cfb645fe3473c94 (patch) | |
tree | 5f27a651bf22c5b1d63067c51aa8b58cbe692d95 /test/compilationTests/zeppelin/token/LimitedTransferToken.sol | |
parent | 1f832e068b2d2c79fff870742d867b655b62f691 (diff) | |
download | dexon-solidity-8781990ff3a70934d5dcfad50cfb645fe3473c94.tar.gz dexon-solidity-8781990ff3a70934d5dcfad50cfb645fe3473c94.tar.zst dexon-solidity-8781990ff3a70934d5dcfad50cfb645fe3473c94.zip |
Remove trailing whitespace in all contract files.
Diffstat (limited to 'test/compilationTests/zeppelin/token/LimitedTransferToken.sol')
-rw-r--r-- | test/compilationTests/zeppelin/token/LimitedTransferToken.sol | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/compilationTests/zeppelin/token/LimitedTransferToken.sol b/test/compilationTests/zeppelin/token/LimitedTransferToken.sol index 3ce928f6..d668b86f 100644 --- a/test/compilationTests/zeppelin/token/LimitedTransferToken.sol +++ b/test/compilationTests/zeppelin/token/LimitedTransferToken.sol @@ -4,11 +4,11 @@ import "./ERC20.sol"; /** * @title LimitedTransferToken - * @dev LimitedTransferToken defines the generic interface and the implementation to limit token - * transferability for different events. It is intended to be used as a base class for other token - * contracts. + * @dev LimitedTransferToken defines the generic interface and the implementation to limit token + * transferability for different events. It is intended to be used as a base class for other token + * contracts. * LimitedTransferToken has been designed to allow for different limiting factors, - * this can be achieved by recursively calling super.transferableTokens() until the base class is + * this can be achieved by recursively calling super.transferableTokens() until the base class is * hit. For example: * function transferableTokens(address holder, uint64 time) view public returns (uint256) { * return min256(unlockedTokens, super.transferableTokens(holder, time)); @@ -48,7 +48,7 @@ contract LimitedTransferToken is ERC20 { /** * @dev Default transferable tokens function returns all tokens for a holder (no limit). - * @dev Overwriting transferableTokens(address holder, uint64 time) is the way to provide the + * @dev Overwriting transferableTokens(address holder, uint64 time) is the way to provide the * specific logic for limiting token transferability for a holder over time. */ function transferableTokens(address holder, uint64 time) view public returns (uint256) { |