Skip to content

Commit 277d6a1

Browse files
committed
fix(multiple-arbitrable-transaction): fix #196
1 parent 9b526b6 commit 277d6a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/standard/arbitration/MultipleArbitrableTransaction.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ contract MultipleArbitrableTransaction {
6666
* @param _party The address of the party submiting the evidence. Note that 0 is kept for evidences not submitted by any party.
6767
* @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.
6868
*/
69-
event Evidence(Arbitrator indexed _arbitrator, uint indexed _disputeID, address _party, string _evidence);
69+
event Evidence(Arbitrator indexed _arbitrator, uint indexed _disputeID, address indexed _party, string _evidence);
7070

7171
/** @dev To be emmited when a dispute is created to link the correct meta-evidence to the disputeID.
7272
* @param _arbitrator The arbitrator of the contract.

0 commit comments

Comments
 (0)