aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorRoman <justcallmefrolov@gmail.com>2018-04-04 14:02:58 +0800
committerGitHub <noreply@github.com>2018-04-04 14:02:58 +0800
commit86c5d6aaadf16e823ad7793e90a564cda2a10a4c (patch)
tree9aabde7286196a28ea7c08d62bcd839540331286 /docs
parent0695ffe51d5195dbedce37b26bbe395cfdaf3746 (diff)
downloaddexon-solidity-86c5d6aaadf16e823ad7793e90a564cda2a10a4c.tar
dexon-solidity-86c5d6aaadf16e823ad7793e90a564cda2a10a4c.tar.gz
dexon-solidity-86c5d6aaadf16e823ad7793e90a564cda2a10a4c.tar.bz2
dexon-solidity-86c5d6aaadf16e823ad7793e90a564cda2a10a4c.tar.lz
dexon-solidity-86c5d6aaadf16e823ad7793e90a564cda2a10a4c.tar.xz
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')
-rw-r--r--docs/contracts.rst2
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
==============================================