remove completed TODO comments
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 42s Details

This commit is contained in:
Ladd Hoffman 2024-04-22 12:43:51 -05:00
parent df646a2a8f
commit 70d5d84d0d
2 changed files with 0 additions and 5 deletions

View File

@ -68,9 +68,6 @@ contract Proposals is DAOContract, IOnValidate {
bool callbackOnAccepted,
bytes calldata callbackData
) external payable returns (uint proposalIndex) {
// TODO: Consider taking author as a parameter,
// or else accepting a postIndex instead of contentId,
// or support post lookup by contentId
// TODO: Take citations as a parameter
Citation[] memory emptyCitations;
Author[] memory authors = new Author[](1);

View File

@ -34,8 +34,6 @@ function WorkContract({
const fetchedPrice = await workContract.methods.price().call();
setPriceWei(fetchedPrice);
setPriceEth(web3.utils.fromWei(fetchedPrice, 'ether'));
// TODO: Subscribe to price update event
// TODO: Unsubscribe
}, [workContract, provider]);
useEffect(() => {