Merge branch 'master' into patch-1

This commit is contained in:
Nitika Goel 2018-09-21 16:10:52 +05:30 committed by GitHub
commit 3dc6906fd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -43,11 +43,12 @@ The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "S
*
* MUST return a bool upon valid or invalid signature with corresponding _data
* MUST take (bytes, bytes) as arguments
* MUST allow external calls
*/
function isValidSignature(
bytes _data,
bytes _data,
bytes _signature)
public
public
view
returns (bool isValid);
```