diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-04-04 14:16:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-04 14:16:38 +0800 |
commit | c63efebd4517d51f29082a8d0cff814a4922243d (patch) | |
tree | bca33c00264e6860e4307e2e71356ed9697491ea /docs | |
parent | 920de496ab1d403f06640c17c9999c5024730f8f (diff) | |
parent | 86c5d6aaadf16e823ad7793e90a564cda2a10a4c (diff) | |
download | dexon-solidity-c63efebd4517d51f29082a8d0cff814a4922243d.tar.gz dexon-solidity-c63efebd4517d51f29082a8d0cff814a4922243d.tar.zst dexon-solidity-c63efebd4517d51f29082a8d0cff814a4922243d.zip |
Merge pull request #3814 from FrolovR/patch-2
hash256 -> bytes32 fix in misleading note
Diffstat (limited to 'docs')
-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 ============================================== |