diff options
author | chriseth <chris@ethereum.org> | 2018-02-22 04:46:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-22 04:46:59 +0800 |
commit | bb2a48e05cac2ce16f3b879025a0d9ca57c70e8a (patch) | |
tree | 1e4c296c8c66353e405c4d5783cac389ce29f31b | |
parent | 20d8254029c2282ea3603433d94fe9018a4a69af (diff) | |
parent | d01786f0aa4e128f70aea2bc53a8d3c61294a587 (diff) | |
download | dexon-solidity-bb2a48e05cac2ce16f3b879025a0d9ca57c70e8a.tar.gz dexon-solidity-bb2a48e05cac2ce16f3b879025a0d9ca57c70e8a.tar.zst dexon-solidity-bb2a48e05cac2ce16f3b879025a0d9ca57c70e8a.zip |
Merge pull request #3566 from mirgj/patch-1
Update solidity-by-example.rst
-rw-r--r-- | docs/solidity-by-example.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst index b663083c..b8e158ac 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -272,7 +272,7 @@ activate themselves. // money back. require(msg.value > highestBid); - if (highestBidder != 0) { + if (highestBid != 0) { // Sending back the money by simply using // highestBidder.send(highestBid) is a security risk // because it could execute an untrusted contract. |