IArbitrable

Git Source

Functions

rule

Give a ruling for a dispute. Must be called by the arbitrator. The purpose of this function is to ensure that the address calling it has the right to rule on the contract.

function rule(uint256 _disputeID, uint256 _ruling) external;

Parameters

NameTypeDescription
_disputeIDuint256ID of the dispute in the Arbitrator contract.
_rulinguint256Ruling given by the arbitrator. Note that 0 is reserved for "Not able/wanting to make a decision".

Events

Ruling

To be raised when a ruling is given.

event Ruling(IArbitrator indexed _arbitrator, uint256 indexed _disputeID, uint256 _ruling);