@@ -247,7 +247,7 @@ contract DisputeKitSybilResistant is BaseDisputeKit, IEvidence {
247247
248248 Round storage round = dispute.rounds[dispute.rounds.length - 1 ];
249249 (uint96 courtID , , , , ) = core.disputes (_coreDisputeID);
250- (, bool hiddenVotes , , , , ) = core.courts (courtID);
250+ (, bool hiddenVotes , , , , , ) = core.courts (courtID);
251251
252252 // Save the votes.
253253 for (uint256 i = 0 ; i < _voteIDs.length ; i++ ) {
@@ -558,12 +558,12 @@ contract DisputeKitSybilResistant is BaseDisputeKit, IEvidence {
558558 /// @return Whether the address can be drawn or not.
559559 function _postDrawCheck (uint256 _coreDisputeID , address _juror ) internal view override returns (bool ) {
560560 (uint96 courtID , , , , ) = core.disputes (_coreDisputeID);
561- (uint256 lockedAmountPerJuror , , , , , ) = core.getRoundInfo (
561+ (uint256 lockedAmountPerJuror , , , , , , , ) = core.getRoundInfo (
562562 _coreDisputeID,
563563 core.getNumberOfRounds (_coreDisputeID) - 1
564564 );
565565 (uint256 stakedTokens , uint256 lockedTokens , ) = core.getJurorBalance (_juror, courtID);
566- (, , uint256 minStake , , , ) = core.courts (courtID);
566+ (, , uint256 minStake , , , , ) = core.courts (courtID);
567567 if (stakedTokens < lockedTokens + lockedAmountPerJuror || stakedTokens < minStake) {
568568 return false ;
569569 } else {
0 commit comments