Merge pull request #407 from MrChico/MrChico-ecrecoverdoc

ecrecover takes uint8, not byte
This commit is contained in:
chriseth 2016-03-02 15:17:13 +01:00
commit 32f3a653b6

View File

@ -94,7 +94,7 @@ Mathematical and Cryptographic Functions
compute the SHA-256 hash of the (tightly packed) arguments compute the SHA-256 hash of the (tightly packed) arguments
`ripemd160(...) returns (bytes20)`: `ripemd160(...) returns (bytes20)`:
compute RIPEMD-160 hash of the (tightly packed) arguments compute RIPEMD-160 hash of the (tightly packed) arguments
`ecrecover(bytes32, byte, bytes32, bytes32) returns (address)`: `ecrecover(bytes32, uint8, bytes32, bytes32) returns (address)`:
recover public key from elliptic curve signature - arguments are (data, v, r, s) recover public key from elliptic curve signature - arguments are (data, v, r, s)
In the above, "tightly packed" means that the arguments are concatenated without padding. In the above, "tightly packed" means that the arguments are concatenated without padding.