Automatically merged updates to draft EIP(s) 1271

Hi, I'm a bot! This change was automatically merged because:

 - It only modifies existing Draft or Last Call EIP(s)
 - The PR was approved or written by at least one author of each modified EIP
 - The build is passing
This commit is contained in:
Philippe Castonguay 2018-09-20 18:02:23 -04:00 committed by EIP Automerge Bot
parent a15edb61bb
commit ccca01c77b
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);
```