diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-18 17:29:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-18 17:29:49 +0800 |
commit | c167a31b17de4e6c24c00c73f3afb2f5c255b1fd (patch) | |
tree | 618398cbb9c311fe3a9e3f24432fd6e56d5c2e24 | |
parent | b61f744dd9c5e954f53deb781c7e408da55dcda1 (diff) | |
parent | 56b65cf846c742f1665a8f4ff83b8039fef0709e (diff) | |
download | dexon-solidity-c167a31b17de4e6c24c00c73f3afb2f5c255b1fd.tar dexon-solidity-c167a31b17de4e6c24c00c73f3afb2f5c255b1fd.tar.gz dexon-solidity-c167a31b17de4e6c24c00c73f3afb2f5c255b1fd.tar.bz2 dexon-solidity-c167a31b17de4e6c24c00c73f3afb2f5c255b1fd.tar.lz dexon-solidity-c167a31b17de4e6c24c00c73f3afb2f5c255b1fd.tar.xz dexon-solidity-c167a31b17de4e6c24c00c73f3afb2f5c255b1fd.tar.zst dexon-solidity-c167a31b17de4e6c24c00c73f3afb2f5c255b1fd.zip |
Merge pull request #2574 from ltfschoen/patch-4
Update solidity-by-example.rst. Fixes accepted bids
-rw-r--r-- | docs/solidity-by-example.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst index 450b0286..e1fd4914 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -362,8 +362,8 @@ together with the bid. Since value transfers cannot be blinded in Ethereum, anyone can see the value. The following contract solves this problem by -accepting any value that is at least as large as -the bid. Since this can of course only be checked during +accepting any value that is larger than the highest +bid. Since this can of course only be checked during the reveal phase, some bids might be **invalid**, and this is on purpose (it even provides an explicit flag to place invalid bids with high value transfers): |