Skip to content

Commit

Permalink
fix(event): event should use localDisputeID
Browse files Browse the repository at this point in the history
  • Loading branch information
0xferit committed Oct 17, 2018
1 parent 64e45fc commit 285add2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/standard/proxy/ArbitratorVersioningProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ contract ArbitratorVersioningProxy is Arbitrator, Arbitrable, VersioningProxy {
}

function rule(uint _externalDisputeID, uint _ruling) public {
emit Ruling(Arbitrator(msg.sender), _externalDisputeID, _ruling);
emit Ruling(Arbitrator(msg.sender), externalDisputeIDToLocalDisputeID[_externalDisputeID], _ruling);

executeRuling(_externalDisputeID, _ruling);
}
Expand Down

0 comments on commit 285add2

Please sign in to comment.