diff options
-rw-r--r-- | docs/contracts.rst | 6 | ||||
-rw-r--r-- | std/StandardToken.sol | 4 | ||||
-rw-r--r-- | std/owned.sol | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index c4eda8dc..e3f5bbac 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -40,7 +40,7 @@ This means that cyclic creation dependencies are impossible. :: - pragma solidity ^0.4.20; // should actually be 0.4.21 + pragma solidity >0.4.21; contract OwnedToken { // TokenCreator is a contract type that is defined below. @@ -981,7 +981,7 @@ Constructor functions can be either ``public`` or ``internal``. :: - pragma solidity ^0.4.20; // should actually be 0.4.21 + pragma solidity >0.4.21; contract A { uint public a; @@ -998,7 +998,7 @@ Constructor functions can be either ``public`` or ``internal``. A constructor set as ``internal`` causes the contract to be marked as :ref:`abstract <abstract-contract>`. .. note :: - Prior to version 0.4.21, constructors were defined as functions with the same name as the contract. This syntax is now deprecated. + Prior to version 0.4.22, constructors were defined as functions with the same name as the contract. This syntax is now deprecated. :: diff --git a/std/StandardToken.sol b/std/StandardToken.sol index 1b218d67..5afc9747 100644 --- a/std/StandardToken.sol +++ b/std/StandardToken.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.0; +pragma solidity >0.4.21; import "./Token.sol"; @@ -8,7 +8,7 @@ contract StandardToken is Token { mapping (address => mapping (address => uint256)) m_allowance; - function StandardToken(address _initialOwner, uint256 _supply) public { + constructor(address _initialOwner, uint256 _supply) public { supply = _supply; balance[_initialOwner] = _supply; } diff --git a/std/owned.sol b/std/owned.sol index ee9860d3..8e1d5917 100644 --- a/std/owned.sol +++ b/std/owned.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.0; +pragma solidity >0.4.21; contract owned { address owner; @@ -9,7 +9,7 @@ contract owned { } } - function owned() public { + constructor() public { owner = msg.sender; } } |