diff options
author | chriseth <chris@ethereum.org> | 2018-03-02 19:29:48 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-03-02 19:29:48 +0800 |
commit | 66ee9aa2f1d5af5dbabd6699e98935261d49558c (patch) | |
tree | b648e926d566fb8b8210b2f8c091aaac8a1fefb9 /docs/introduction-to-smart-contracts.rst | |
parent | c9840c98f45e6fa9258ec4624219622f5f71c75c (diff) | |
download | dexon-solidity-66ee9aa2f1d5af5dbabd6699e98935261d49558c.tar dexon-solidity-66ee9aa2f1d5af5dbabd6699e98935261d49558c.tar.gz dexon-solidity-66ee9aa2f1d5af5dbabd6699e98935261d49558c.tar.bz2 dexon-solidity-66ee9aa2f1d5af5dbabd6699e98935261d49558c.tar.lz dexon-solidity-66ee9aa2f1d5af5dbabd6699e98935261d49558c.tar.xz dexon-solidity-66ee9aa2f1d5af5dbabd6699e98935261d49558c.tar.zst dexon-solidity-66ee9aa2f1d5af5dbabd6699e98935261d49558c.zip |
Use 0.4.21 pragma for documentation that uses "emit".
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 11e07292..56f0fe3e 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.20; // should actually be 0.4.21 + pragma solidity ^0.4.21; contract Coin { // The keyword "public" makes those variables |