Remove redundant @dev tags (#995)

* Remove redundant @dev tags

* Remove redundant @notice tags
This commit is contained in:
Arun Kumar
2018-06-14 17:19:59 -05:00
committed by Matt Condon
parent b4406d385f
commit 07020e9544
22 changed files with 102 additions and 125 deletions

View File

@ -3,12 +3,9 @@ pragma solidity ^0.4.24;
/**
* @title Eliptic curve signature operations
*
* @dev Based on https://gist.github.com/axic/5b33912c6f61ae6fd96d6c4a47afde6d
*
* TODO Remove this library once solidity supports passing a signature to ecrecover.
* See https://github.com/ethereum/solidity/issues/864
*
*/
library ECRecovery {
@ -59,7 +56,7 @@ library ECRecovery {
/**
* toEthSignedMessageHash
* @dev prefix a bytes32 value with "\x19Ethereum Signed Message:"
* @dev and hash the result
* and hash the result
*/
function toEthSignedMessageHash(bytes32 hash)
internal