You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// @dev Gets the round info for a specified dispute and round.
985
+
/// @dev This function must not be called from a non-view function because it returns a dynamic array which might be very large, theoretically exceeding the block gas limit.
986
+
/// @param _disputeID The ID of the dispute.
987
+
/// @param _round The round to get the info for.
988
+
/// @return round The round info.
984
989
function getRoundInfo(uint256_disputeID, uint256_round) externalviewreturns (Round memory) {
985
990
return disputes[_disputeID].rounds[_round];
986
991
}
987
992
993
+
/// @dev Gets the PNK at stake per juror for a specified dispute and round.
994
+
/// @param _disputeID The ID of the dispute.
995
+
/// @param _round The round to get the info for.
996
+
/// @return pnkAtStakePerJuror The PNK at stake per juror.
988
997
function getPnkAtStakePerJuror(uint256_disputeID, uint256_round) externalviewreturns (uint256) {
0 commit comments