Skip to content

Commit

Permalink
Add new attributes in events
Browse files Browse the repository at this point in the history
This follows a change in the implementation
https://github.com/raiden-network/raiden-contracts/pull/1118/files

Two events got new arguments.

This commit is a part of solving raiden-network#253
  • Loading branch information
pirapira committed Sep 4, 2019
1 parent aa1814b commit e52734c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions smart_contracts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ Allows a channel participant to close the channel. The channel cannot be settled

::

event ChannelClosed(uint256 indexed channel_identifier, address indexed closing_participant);
event ChannelClosed(uint256 indexed channel_identifier, address indexed closing_participant, uint256 indexed nonce, bytes32 balance_hash);

- ``channel_identifier``: :term:`Channel identifier` assigned by the current contract.
- ``partner``: Channel partner of the participant who calls the function.
Expand Down Expand Up @@ -557,7 +557,8 @@ Called after a channel has been closed. Can be called by any Ethereum address an
event NonClosingBalanceProofUpdated(
uint256 indexed channel_identifier,
address indexed closing_participant,
uint256 nonce
uint256 indexed nonce,
bytes32 balance_hash
);

- ``channel_identifier``: Channel identifier assigned by the current contract.
Expand Down

0 comments on commit e52734c

Please sign in to comment.