From 86c5d6aaadf16e823ad7793e90a564cda2a10a4c Mon Sep 17 00:00:00 2001 From: Roman Date: Wed, 4 Apr 2018 09:02:58 +0300 Subject: 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 --- docs/contracts.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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 ============================================== -- cgit