diff options
author | chriseth <chris@ethereum.org> | 2017-04-21 18:02:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-21 18:02:27 +0800 |
commit | e3eea9fc2e5cb52c31cb78a6d40c53ba72863f33 (patch) | |
tree | 8991ae3ec71028e570c724a8fd83710ce7e3b440 | |
parent | ed64c849f57b9aeed1eda4563f0d4340013420ef (diff) | |
parent | 1ac7056a1a8d782e90516596b212b06457ad8da1 (diff) | |
download | dexon-solidity-e3eea9fc2e5cb52c31cb78a6d40c53ba72863f33.tar.gz dexon-solidity-e3eea9fc2e5cb52c31cb78a6d40c53ba72863f33.tar.zst dexon-solidity-e3eea9fc2e5cb52c31cb78a6d40c53ba72863f33.zip |
Merge pull request #2151 from morgansliman/patch-2
Added link to example for ecrecover
-rw-r--r-- | docs/units-and-global-variables.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst index 7a43343f..ab957c7d 100644 --- a/docs/units-and-global-variables.rst +++ b/docs/units-and-global-variables.rst @@ -100,6 +100,7 @@ Mathematical and Cryptographic Functions compute RIPEMD-160 hash of the (tightly packed) arguments ``ecrecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) returns (address)``: recover the address associated with the public key from elliptic curve signature or return zero on error + (`example usage <https://ethereum.stackexchange.com/q/1777/222>`_) ``revert()``: abort execution and revert state changes |