From e81a03758eb16f2a2885b93e939375e7893ec3fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferit=20Tun=C3=A7er?= Date: Wed, 26 Dec 2018 17:07:28 +0300 Subject: [PATCH] fix(multiple-arbitrable-transaction): fix #196 --- .../standard/arbitration/MultipleArbitrableTransaction.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/standard/arbitration/MultipleArbitrableTransaction.sol b/contracts/standard/arbitration/MultipleArbitrableTransaction.sol index 212ac0c7..9a505903 100644 --- a/contracts/standard/arbitration/MultipleArbitrableTransaction.sol +++ b/contracts/standard/arbitration/MultipleArbitrableTransaction.sol @@ -66,7 +66,7 @@ contract MultipleArbitrableTransaction { * @param _party The address of the party submiting the evidence. Note that 0 is kept for evidences not submitted by any party. * @param _evidence A link to evidence or if it is short the evidence itself. Can be web link ("http://X"), IPFS ("ipfs:/X") or another storing service (using the URI, see https://en.wikipedia.org/wiki/Uniform_Resource_Identifier ). One usecase of short evidence is to include the hash of the plain English contract. */ - event Evidence(Arbitrator indexed _arbitrator, uint indexed _disputeID, address _party, string _evidence); + event Evidence(Arbitrator indexed _arbitrator, uint indexed _disputeID, address indexed _party, string _evidence); /** @dev To be emmited when a dispute is created to link the correct meta-evidence to the disputeID. * @param _arbitrator The arbitrator of the contract.