From cf12d73722ada4e2c25cf65eba3db921b8e1642b Mon Sep 17 00:00:00 2001 From: Yoichi Hirai Date: Thu, 5 Sep 2019 13:29:43 +0200 Subject: [PATCH] Add locksroots in ChannelSettled event This follows the implementation change made in https://github.com/raiden-network/raiden-contracts/pull/1126 This commit is a part of updating the spec https://github.com/raiden-network/spec/issues/253 --- smart_contracts.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/smart_contracts.rst b/smart_contracts.rst index 280ae8f..6c19f66 100644 --- a/smart_contracts.rst +++ b/smart_contracts.rst @@ -611,7 +611,9 @@ Settles the channel by transferring the amount of tokens each participant is owe event ChannelSettled( uint256 indexed channel_identifier, uint256 participant1_amount, - uint256 participant2_amount + bytes32 participant1_locksroot, + uint256 participant2_amount, + bytes32 participant2_locksroot ); - ``channel_identifier``: :term:`Channel identifier` assigned by the current contract.