From 4a5b9853cc7812e0c4a429a3caf2b871812301cb Mon Sep 17 00:00:00 2001 From: kumanoko24 Date: Wed, 26 Sep 2018 13:16:19 +0800 Subject: [PATCH] Fix typo --- eip-X.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eip-X.md b/eip-X.md index 36c115c21d2619..90626fbd8b2a7c 100644 --- a/eip-X.md +++ b/eip-X.md @@ -578,7 +578,7 @@ Assume that `msg.sender` (`from`) is `0x83b21dbd0e60b9709d647de183f5ae0c31b54c2a transferAndCall( "0x1234567890123456789012345678901234567890", "100000000000000000000", - "0xae77c23700000000000000000000000083b21dbd0e60b9709d647de183f5ae0c31b54c2a0000000000000000000000000000000000000000000000056bc75e2d63100000"); + "0xae77c2370000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000083b21dbd0e60b9709d647de183f5ae0c31b54c2a"); ``` Or place arbitrary bytes after the function signature ( `"0x" + keccak256("purchase(uint256,address)")[0~7]` = `0xae77c237` ) @@ -638,7 +638,7 @@ This is the key component of a Robust Tokenisation, allowing the Token transfer This delegation is also toggleable: - `bool isDelegateEnable` is a toggle to activate delegation, the value is `false` by default, and only `issuer` can change this value. -- `SetDelegate(bool)` 為 `isDelegateEnable` is an event emitted when `isDelegateEnable` is changed via `SetDelegate(bool)`. +- `SetDelegate(bool)` is an event emitted when `isDelegateEnable` is changed via `SetDelegate(bool)`. ``` bool public isDelegateEnable;