Skip to content

Commit 58d30ab

Browse files
committed
Fix comparison operator in require statement
1 parent 4215a4e commit 58d30ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Escrow.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ contract Escrow is Owned, IEscrow {
508508
external
509509
onlyRepoAdmin(repoId, accountId)
510510
{
511-
require(admins.length > 0, Errors.INVALID_AMOUNT);
511+
require(admins.length > 0, Errors.INVALID_AMOUNT);
512512
require(admins.length <= batchLimit, Errors.BATCH_LIMIT_EXCEEDED);
513513

514514
Account storage account = accounts[repoId][accountId];

0 commit comments

Comments
 (0)