diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2018-04-16 05:12:28 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2018-04-16 05:12:28 +0800 |
commit | 8a7224683b8fbf7c822922dca35ee2eda8e41d79 (patch) | |
tree | 4151fa8699b050bac6fe919d3d6ba51115ffd29b /docs/solidity-by-example.rst | |
parent | 73ca3e8a1eaf929dac60ce0a154975fa46b2040e (diff) | |
download | dexon-solidity-8a7224683b8fbf7c822922dca35ee2eda8e41d79.tar.gz dexon-solidity-8a7224683b8fbf7c822922dca35ee2eda8e41d79.tar.zst dexon-solidity-8a7224683b8fbf7c822922dca35ee2eda8e41d79.zip |
Docs: Update solidity version for revert with reason
Diffstat (limited to 'docs/solidity-by-example.rst')
-rw-r--r-- | docs/solidity-by-example.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst index 3cbfcd66..546767e4 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -36,7 +36,7 @@ of votes. :: - pragma solidity ^0.4.16; + pragma solidity ^0.4.22; /// @title Voting with delegation. contract Ballot { @@ -225,7 +225,7 @@ activate themselves. :: - pragma solidity ^0.4.21; + pragma solidity ^0.4.22; contract SimpleAuction { // Parameters of the auction. Times are either @@ -388,7 +388,7 @@ high or low invalid bids. :: - pragma solidity ^0.4.21; + pragma solidity ^0.4.22; contract BlindAuction { struct Bid { @@ -541,7 +541,7 @@ Safe Remote Purchase :: - pragma solidity ^0.4.21; + pragma solidity ^0.4.22; contract Purchase { uint public value; |