comments
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 41s
Details
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 41s
Details
This commit is contained in:
parent
54d4fbc6cc
commit
ea6d068555
|
@ -9,9 +9,6 @@ import "./interfaces/IAcceptAvailability.sol";
|
|||
|
||||
import "hardhat/console.sol";
|
||||
|
||||
/// This contract must manage validation pools and reputation,
|
||||
/// because otherwise there's no way to enforce appropriate permissions on
|
||||
/// transfer of value between reputation NFTs.
|
||||
contract DAO is Reputation, Forum, ValidationPools {
|
||||
/// Transfer REP to a contract, and call that contract's receiveTransfer method
|
||||
function stakeAvailability(
|
||||
|
|
|
@ -6,6 +6,7 @@ struct Post {
|
|||
address sender;
|
||||
address author;
|
||||
string contentId;
|
||||
// TODO: citations
|
||||
}
|
||||
|
||||
contract Forum {
|
||||
|
|
|
@ -8,3 +8,6 @@ contract Reputation is ERC20("Reputation", "REP") {
|
|||
return 9;
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: try implementing as ERC721
|
||||
// If that doesn't work, try writing from scratch
|
||||
|
|
Loading…
Reference in New Issue