Skip to content

Commit ab30731

Browse files
f: revert LinkedList to internal
1 parent 2baed38 commit ab30731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/horizon/contracts/libraries/LinkedList.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ library LinkedList {
7272
* @param self The list metadata
7373
* @param id The id of the item to add
7474
*/
75-
function addTail(List storage self, bytes32 id) external {
75+
function addTail(List storage self, bytes32 id) internal {
7676
require(self.count < MAX_ITEMS, LinkedListMaxElementsExceeded());
7777
require(id != bytes32(0), LinkedListInvalidZeroId());
7878
self.tail = id;

0 commit comments

Comments
 (0)