Skip to content

Commit

Permalink
fix: remove condition to become a jury
Browse files Browse the repository at this point in the history
  • Loading branch information
0xbeny committed Aug 2, 2024
1 parent 0296936 commit 79fccb8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/contracts/src/DaofinPlugin.sol
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,6 @@ contract DaofinPlugin is BaseDaofinPlugin {
for (uint256 i = 0; i < _members.length; i++) {
if (_members[i] == address(0)) revert AddressIsZero();
if (isJudiciaryMember(_members[i])) revert JudiciaryExist();
if (isMasterNodeDelegatee(_members[i])) revert InValidAddress();
if (isPeopleHouse(_members[i])) revert InValidAddress();
if (isXDCValidatorCandidate(_members[i])) revert InValidAddress();

Expand Down

0 comments on commit 79fccb8

Please sign in to comment.