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
this check is used 5 times, can be a modifier to clean up logic, reduce lines of code, and add more readability: if (_isDecommissioned(_circle)) revert NotCommissioned();
same here if (!isMember[_id][_member]) revert NotMember();
The text was updated successfully, but these errors were encountered:
this check is used 5 times, can be a modifier to clean up logic, reduce lines of code, and add more readability:
if (_isDecommissioned(_circle)) revert NotCommissioned();
same here
if (!isMember[_id][_member]) revert NotMember();
The text was updated successfully, but these errors were encountered: