Automatically merged updates to draft EIP(s) 191

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

 - It only modifies existing draft 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:
ligi 2018-04-09 12:37:50 +02:00 committed by EIP Automerge Bot
parent ab6d556d82
commit 493795bda8
1 changed files with 2 additions and 2 deletions

View File

@ -52,10 +52,10 @@ Using `0x19` thus makes it possible to extend the scheme by defining a version `
public
returns (bytes32 transactionHash)
{
// Arguments when calculating hash to validate
// Arguments when calculating hash to validate
// 1: byte(0x19) - the initial 0x19 byte
// 2: byte(0) - the version byte
// 4: this - the validator address
// 3: this - the validator address
// 4-7 : Application specific data
transactionHash = keccak256(byte(0x19),byte(0),this,destination, value, data, nonce);
sender = ecrecover(transactionHash, v, r, s);