Adding A Judge to Custom Bet - mevu-bet/mevu GitHub Wiki

If a bet maker would like a third party to have final say over a disputed bet, that user may appoint a judge after the original bet is created but before it is taken.

function addJudge (
    bytes32 wagerId,
    address judge,
) 
    onlyMaker(wagerId) 
    notTaken(wagerId) 
    external

wagerId Id of the bet to add a judge to.
judge The address the judge decision must be sent from.