diff options
author | Roman <justcallmefrolov@gmail.com> | 2018-04-04 14:02:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-04 14:02:58 +0800 |
commit | 86c5d6aaadf16e823ad7793e90a564cda2a10a4c (patch) | |
tree | 9aabde7286196a28ea7c08d62bcd839540331286 /docs/contracts.rst | |
parent | 0695ffe51d5195dbedce37b26bbe395cfdaf3746 (diff) | |
download | dexon-solidity-86c5d6aaadf16e823ad7793e90a564cda2a10a4c.tar.gz dexon-solidity-86c5d6aaadf16e823ad7793e90a564cda2a10a4c.tar.zst dexon-solidity-86c5d6aaadf16e823ad7793e90a564cda2a10a4c.zip |
hash256 -> bytes32 fix in misleading note
As it was described here: https://ethereum.stackexchange.com/questions/44628/understanding-low-level-interface-to-logs/44629?noredirect=1#comment52316_44629
Diffstat (limited to 'docs/contracts.rst')
-rw-r--r-- | docs/contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 9ae80209..f8a44fb3 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -803,7 +803,7 @@ as topics. The event call above can be performed in the same way as } where the long hexadecimal number is equal to -``keccak256("Deposit(address,hash256,uint256)")``, the signature of the event. +``keccak256("Deposit(address,bytes32,uint256)")``, the signature of the event. Additional Resources for Understanding Events ============================================== |