Skip to content

Commit

Permalink
hotfix: changing visibility to internal
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroknots committed Oct 19, 2023
1 parent ccdaccf commit 1f9ec02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SentinelList.sol
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ library SentinelListLib {
self.entries[popEntry] = ZERO_ADDRESS;
}

function contains(SentinelList storage self, address entry) public view returns (bool) {
function contains(SentinelList storage self, address entry) internal view returns (bool) {
return SENTINEL != entry && self.entries[entry] != ZERO_ADDRESS;
}

Expand Down

0 comments on commit 1f9ec02

Please sign in to comment.