Skip to content

Commit

Permalink
Fix a linting error by making the revert message worse
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundedgar committed Nov 22, 2023
1 parent 090f071 commit 7070a35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/L2ForkArbitrator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ contract L2ForkArbitrator is MoneyBoxUser, IBridgeMessageReceiver {
bytes32 question_id
) public {

require(!isForkInProgress, "Already forking over something else");
require(!isForkInProgress, "Already forking"); // Forking over something else

RequestStatus status = arbitrationRequests[question_id].status;
require(status == RequestStatus.QUEUED || status == RequestStatus.FORK_REQUEST_FAILED, "not awaiting activation");
Expand Down

0 comments on commit 7070a35

Please sign in to comment.