aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/zeppelin/ownership/Claimable.sol
diff options
context:
space:
mode:
authorDaniel Kirchner <daniel@ekpyron.org>2018-08-02 03:57:12 +0800
committerDaniel Kirchner <daniel@ekpyron.org>2018-08-02 03:57:12 +0800
commit8781990ff3a70934d5dcfad50cfb645fe3473c94 (patch)
tree5f27a651bf22c5b1d63067c51aa8b58cbe692d95 /test/compilationTests/zeppelin/ownership/Claimable.sol
parent1f832e068b2d2c79fff870742d867b655b62f691 (diff)
downloaddexon-solidity-8781990ff3a70934d5dcfad50cfb645fe3473c94.tar
dexon-solidity-8781990ff3a70934d5dcfad50cfb645fe3473c94.tar.gz
dexon-solidity-8781990ff3a70934d5dcfad50cfb645fe3473c94.tar.bz2
dexon-solidity-8781990ff3a70934d5dcfad50cfb645fe3473c94.tar.lz
dexon-solidity-8781990ff3a70934d5dcfad50cfb645fe3473c94.tar.xz
dexon-solidity-8781990ff3a70934d5dcfad50cfb645fe3473c94.tar.zst
dexon-solidity-8781990ff3a70934d5dcfad50cfb645fe3473c94.zip
Remove trailing whitespace in all contract files.
Diffstat (limited to 'test/compilationTests/zeppelin/ownership/Claimable.sol')
-rw-r--r--test/compilationTests/zeppelin/ownership/Claimable.sol8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/compilationTests/zeppelin/ownership/Claimable.sol b/test/compilationTests/zeppelin/ownership/Claimable.sol
index d7b48a29..7778e2de 100644
--- a/test/compilationTests/zeppelin/ownership/Claimable.sol
+++ b/test/compilationTests/zeppelin/ownership/Claimable.sol
@@ -6,14 +6,14 @@ import './Ownable.sol';
/**
* @title Claimable
- * @dev Extension for the Ownable contract, where the ownership needs to be claimed.
+ * @dev Extension for the Ownable contract, where the ownership needs to be claimed.
* This allows the new owner to accept the transfer.
*/
contract Claimable is Ownable {
address public pendingOwner;
/**
- * @dev Modifier throws if called by any account other than the pendingOwner.
+ * @dev Modifier throws if called by any account other than the pendingOwner.
*/
modifier onlyPendingOwner() {
if (msg.sender != pendingOwner) {
@@ -23,8 +23,8 @@ contract Claimable is Ownable {
}
/**
- * @dev Allows the current owner to set the pendingOwner address.
- * @param newOwner The address to transfer ownership to.
+ * @dev Allows the current owner to set the pendingOwner address.
+ * @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) public onlyOwner {
pendingOwner = newOwner;