diff options
author | Erik Kundt <bitshift@posteo.org> | 2018-07-02 22:46:54 +0800 |
---|---|---|
committer | Erik Kundt <bitshift@posteo.org> | 2018-07-02 22:46:54 +0800 |
commit | 2031e8e0c15a6032c5c446edc2bfca5bd8cd8365 (patch) | |
tree | db33aac9098939cd5372b2d745b14f4346a997c0 /docs/introduction-to-smart-contracts.rst | |
parent | e16e37f5074ce359b852f3b2e4b80095d22952dc (diff) | |
download | dexon-solidity-2031e8e0c15a6032c5c446edc2bfca5bd8cd8365.tar.gz dexon-solidity-2031e8e0c15a6032c5c446edc2bfca5bd8cd8365.tar.zst dexon-solidity-2031e8e0c15a6032c5c446edc2bfca5bd8cd8365.zip |
Adds review suggestions.
Diffstat (limited to 'docs/introduction-to-smart-contracts.rst')
-rw-r--r-- | docs/introduction-to-smart-contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst index 236b117f..e1b61d8b 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -80,7 +80,7 @@ registering with username and password — all you need is an Ethereum keypair. :: - pragma solidity ^0.4.24; + pragma solidity >0.4.24; contract Coin { // The keyword "public" makes those variables |