diff options
author | Jim McDonald <Jim@mcdee.net> | 2017-12-13 02:47:30 +0800 |
---|---|---|
committer | Jim McDonald <Jim@mcdee.net> | 2017-12-13 02:47:30 +0800 |
commit | 6e521d59b0a30fa0673aaf84559d5b74dbb1eed7 (patch) | |
tree | 618b00999c2de8432f222c7b990f51ef4de6b1f0 /docs/structure-of-a-contract.rst | |
parent | 7614b16dc9b2bb1e267e8f46834b40220fb9f9fb (diff) | |
download | dexon-solidity-6e521d59b0a30fa0673aaf84559d5b74dbb1eed7.tar.gz dexon-solidity-6e521d59b0a30fa0673aaf84559d5b74dbb1eed7.tar.zst dexon-solidity-6e521d59b0a30fa0673aaf84559d5b74dbb1eed7.zip |
Fix Solidity warnings
Diffstat (limited to 'docs/structure-of-a-contract.rst')
-rw-r--r-- | docs/structure-of-a-contract.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/structure-of-a-contract.rst b/docs/structure-of-a-contract.rst index 0b554800..e475fcd1 100644 --- a/docs/structure-of-a-contract.rst +++ b/docs/structure-of-a-contract.rst @@ -43,7 +43,7 @@ Functions are the executable units of code within a contract. pragma solidity ^0.4.0; contract SimpleAuction { - function bid() payable { // Function + function bid() public payable { // Function // ... } } @@ -72,7 +72,7 @@ Function modifiers can be used to amend the semantics of functions in a declarat _; } - function abort() onlySeller { // Modifier usage + function abort() public onlySeller { // Modifier usage // ... } } @@ -91,7 +91,7 @@ Events are convenience interfaces with the EVM logging facilities. contract SimpleAuction { event HighestBidIncreased(address bidder, uint amount); // Event - function bid() payable { + function bid() public payable { // ... HighestBidIncreased(msg.sender, msg.value); // Triggering event } |