Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
noeleon930 committed Sep 26, 2018
1 parent 732bd78 commit 4a5b985
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eip-X.md
Expand Up @@ -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` )
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 4a5b985

Please sign in to comment.