diff options
author | Chris Ward <chriswhward@gmail.com> | 2018-09-12 20:49:48 +0800 |
---|---|---|
committer | Chris Ward <chriswhward@gmail.com> | 2018-10-05 17:25:48 +0800 |
commit | 973d91ec894a5438597855ffb9e53f0a20c18696 (patch) | |
tree | a6d0e8826301e680a4549509fc37f8dd85c5b2d6 /docs/abi-spec.rst | |
parent | c07e5f0b163418bcb1e851a4d9f343e956095aef (diff) | |
download | dexon-solidity-973d91ec894a5438597855ffb9e53f0a20c18696.tar.gz dexon-solidity-973d91ec894a5438597855ffb9e53f0a20c18696.tar.zst dexon-solidity-973d91ec894a5438597855ffb9e53f0a20c18696.zip |
Update docs on event data and logs
Updates from comments
Clarify code comments and add an event output example
Clarification from review
Updated with information from @gumb0
Add clarifier
Updates from review
Remove link
Update example code
Diffstat (limited to 'docs/abi-spec.rst')
-rw-r--r-- | docs/abi-spec.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/abi-spec.rst b/docs/abi-spec.rst index f31d9d45..2c206dad 100644 --- a/docs/abi-spec.rst +++ b/docs/abi-spec.rst @@ -405,6 +405,8 @@ Offset ``f`` points to the start of the content of the array ``[[1, 2], [3]]`` w Offset ``g`` points to the start of the content of the array ``["one", "two", "three"]`` which is line 10 (320 bytes); thus ``g = 0x0000000000000000000000000000000000000000000000000000000000000140``. +.. _abi_events: + Events ====== |