From 493795bda889aa423c5ad66574b7f97333660cd0 Mon Sep 17 00:00:00 2001 From: ligi Date: Mon, 9 Apr 2018 12:37:50 +0200 Subject: [PATCH] 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 --- EIPS/eip-191.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EIPS/eip-191.md b/EIPS/eip-191.md index 7cfa6a3555e4..4462d32a6932 100644 --- a/EIPS/eip-191.md +++ b/EIPS/eip-191.md @@ -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);