diff options
-rw-r--r-- | contracts/Governance.sol | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/contracts/Governance.sol b/contracts/Governance.sol index 38ce66b..8ad2fb2 100644 --- a/contracts/Governance.sol +++ b/contracts/Governance.sol @@ -187,20 +187,20 @@ contract Governance { function proposeCRS(uint256 Round, bytes memory SignedCRS) public { } - // AddDKGComplaint(round, complaint) - function addDKGComplaint(uint256 Round, bytes memory Complaint) public { + // AddDKGComplaint(complaint) + function addDKGComplaint(bytes memory Complaint) public { } - // AddDKGMasterPublicKey(round, key) - function addDKGMasterPublicKey(uint256 Round, bytes memory PublicKey) public { + // AddDKGMasterPublicKey(key) + function addDKGMasterPublicKey(bytes memory PublicKey) public { } - // AddDKGMPKReady(round, ready) - function addDKGMPKReady(uint256 Round, bytes memory MPKReady) public { + // AddDKGMPKReady(ready) + function addDKGMPKReady(bytes memory MPKReady) public { } - // AddDKGFinalize(round, finalize) - function addDKGFinalize(uint256 Round, bytes memory Finalize) public { + // AddDKGFinalize(finalize) + function addDKGFinalize(bytes memory Finalize) public { } // Register(public_key, name, email, location, url) |