diff options
author | Nemil Dalal <nemild@gmail.com> | 2015-12-28 22:31:48 -0500 |
---|---|---|
committer | Nemil Dalal <nemild@gmail.com> | 2015-12-28 22:31:48 -0500 |
commit | bdd8a8b0c87d58332f39facc60d6ab7d576764df (patch) | |
tree | f97cdd292f6582db069c4eb3a40bebd266ec69cf /solidity.html.markdown | |
parent | 58ebc87f5f4114c3610633a7cd9c4264647b2448 (diff) |
Wording
Diffstat (limited to 'solidity.html.markdown')
-rw-r--r-- | solidity.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/solidity.html.markdown b/solidity.html.markdown index 5946c1f5..ebc58491 100644 --- a/solidity.html.markdown +++ b/solidity.html.markdown @@ -500,8 +500,8 @@ function remove() { // 9. CONTRACT DESIGN NOTES // A. Obfuscation -// Remember all variables are publicly viewable on blockchain, so -// anything that needs privacy needs to be obfuscated (e.g., hashed) +// All variables are publicly viewable on blockchain, so anything +// that should be totally private needs to be obfuscated (e.g., hashed w/secret) // Steps: 1. Commit to something, 2. Reveal commitment sha3("some_bid_amount", "some secret"); // commit |