Skip to content

Commit 144ffab

Browse files
committedDec 26, 2018
fix(multiple-arbitrable-transaction): fix #195
1 parent 277d6a1 commit 144ffab

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎contracts/standard/arbitration/MultipleArbitrableTransaction.sol

+2-3
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,11 @@ contract MultipleArbitrableTransaction {
7676
event Dispute(Arbitrator indexed _arbitrator, uint indexed _disputeID, uint _metaEvidenceID);
7777

7878
/** @dev To be raised when a ruling is given.
79-
* @param _transactionID The index of the transaction in dispute.
8079
* @param _arbitrator The arbitrator giving the ruling.
8180
* @param _disputeID ID of the dispute in the Arbitrator contract.
8281
* @param _ruling The ruling which was given.
8382
*/
84-
event Ruling(uint indexed _transactionID, Arbitrator indexed _arbitrator, uint indexed _disputeID, uint _ruling);
83+
event Ruling(Arbitrator indexed _arbitrator, uint indexed _disputeID, uint _ruling);
8584

8685
// **************************** //
8786
// * Arbitrable functions * //
@@ -292,7 +291,7 @@ contract MultipleArbitrableTransaction {
292291
require(msg.sender == address(arbitrator), "The caller must be the arbitrator.");
293292
require(transaction.status == Status.DisputeCreated, "The dispute has already been resolved.");
294293

295-
emit Ruling(transactionID, Arbitrator(msg.sender), _disputeID, _ruling);
294+
emit Ruling(Arbitrator(msg.sender), _disputeID, _ruling);
296295

297296
executeRuling(transactionID, _ruling);
298297
}

0 commit comments

Comments
 (0)
Please sign in to comment.