diff --git a/contracts/libraries/PublicationLib.sol b/contracts/libraries/PublicationLib.sol index 98b932d..9c6ff76 100644 --- a/contracts/libraries/PublicationLib.sol +++ b/contracts/libraries/PublicationLib.sol @@ -344,7 +344,6 @@ library PublicationLib { .getPublication(commentParams.pointedProfileId, commentParams.pointedPubId) .referenceModule; if (refModule != address(0)) { - // TODO: Test this on a fork if old modules are still supported try IReferenceModule(refModule).processComment( Types.ProcessCommentParams({ diff --git a/contracts/libraries/constants/Types.sol b/contracts/libraries/constants/Types.sol index 0064b1c..0c3b36e 100644 --- a/contracts/libraries/constants/Types.sol +++ b/contracts/libraries/constants/Types.sol @@ -46,8 +46,6 @@ library Types { * @param Paused The fully paused state. */ enum ProtocolState { - // TODO: Reverse order, so Paused becomes 0 and the default. This will get rid of the initializer needs. - // It needs to be done carefully, as it might pause the protocol in the Lens V2 upgrade. Unpaused, PublishingPaused, Paused