Skip to content

Commit 19095c4

Browse files
committed
fix: set drawDispute visability external.
1 parent b82a9bf commit 19095c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/contracts/contracts/disputes/DisputeManager.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ contract DisputeManager is DisputeManagerV1Storage, GraphUpgradeable, IDisputeMa
579579
* @notice Ignore a dispute with ID `_disputeID`
580580
* @param _disputeID ID of the dispute to be disregarded
581581
*/
582-
function drawDispute(bytes32 _disputeID) public override onlyArbitrator onlyPendingDispute(_disputeID) {
582+
function drawDispute(bytes32 _disputeID) external override onlyArbitrator onlyPendingDispute(_disputeID) {
583583
Dispute storage dispute = disputes[_disputeID];
584584

585585
// Return deposit to the fisherman

0 commit comments

Comments
 (0)