diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-09-26 03:04:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-26 03:04:13 +0800 |
commit | 56eb9dd47fb413f243f89f5010badeccba0fbce9 (patch) | |
tree | 8406ab12c52b9de8669713856198faed10303ec4 /docs/solidity-by-example.rst | |
parent | fc6eee02806ad007992c93cd90f7ce7bdd28556c (diff) | |
parent | e3e9ce53d7c8d5c1228ad7165660c8cb014b0f36 (diff) | |
download | dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.tar dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.tar.gz dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.tar.bz2 dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.tar.lz dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.tar.xz dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.tar.zst dexon-solidity-56eb9dd47fb413f243f89f5010badeccba0fbce9.zip |
Merge pull request #4193 from ethereum/050-version
Set version to 0.5.0-develop
Diffstat (limited to 'docs/solidity-by-example.rst')
-rw-r--r-- | docs/solidity-by-example.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst index d01886f8..0f9a71ab 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -36,7 +36,7 @@ of votes. :: - pragma solidity ^0.4.22; + pragma solidity >=0.4.22 <0.6.0; /// @title Voting with delegation. contract Ballot { @@ -225,7 +225,7 @@ activate themselves. :: - pragma solidity ^0.4.22; + pragma solidity >=0.4.22 <0.6.0; contract SimpleAuction { // Parameters of the auction. Times are either @@ -542,7 +542,7 @@ Safe Remote Purchase :: - pragma solidity ^0.4.22; + pragma solidity >=0.4.22 <0.6.0; contract Purchase { uint public value; @@ -793,7 +793,7 @@ The full contract :: - pragma solidity ^0.4.24; + pragma solidity >=0.4.24 <0.6.0; contract ReceiverPays { address owner = msg.sender; @@ -988,7 +988,7 @@ The full contract :: - pragma solidity ^0.4.24; + pragma solidity >=0.4.24 <0.6.0; contract SimplePaymentChannel { address payable public sender; // The account sending payments. |