@@ -76,12 +76,11 @@ contract MultipleArbitrableTransaction {
76
76
event Dispute (Arbitrator indexed _arbitrator , uint indexed _disputeID , uint _metaEvidenceID );
77
77
78
78
/** @dev To be raised when a ruling is given.
79
- * @param _transactionID The index of the transaction in dispute.
80
79
* @param _arbitrator The arbitrator giving the ruling.
81
80
* @param _disputeID ID of the dispute in the Arbitrator contract.
82
81
* @param _ruling The ruling which was given.
83
82
*/
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 );
85
84
86
85
// **************************** //
87
86
// * Arbitrable functions * //
@@ -292,7 +291,7 @@ contract MultipleArbitrableTransaction {
292
291
require (msg .sender == address (arbitrator), "The caller must be the arbitrator. " );
293
292
require (transaction.status == Status.DisputeCreated, "The dispute has already been resolved. " );
294
293
295
- emit Ruling (transactionID, Arbitrator (msg .sender ), _disputeID, _ruling);
294
+ emit Ruling (Arbitrator (msg .sender ), _disputeID, _ruling);
296
295
297
296
executeRuling (transactionID, _ruling);
298
297
}
0 commit comments