summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2019-03-19 16:05:15 +0800
committerWei-Ning Huang <w@dexon.org>2019-03-19 16:05:15 +0800
commited940bb1e367ebbbcd8cf37aca0a9f1c287321d6 (patch)
tree8552860912cb9aff75d11f2e1018eb9af8874f25
parent8741b524dcc3d86b3b7af20e693bcd915d87a2ae (diff)
downloaddexon-governance-abi-ed940bb1e367ebbbcd8cf37aca0a9f1c287321d6.tar
dexon-governance-abi-ed940bb1e367ebbbcd8cf37aca0a9f1c287321d6.tar.gz
dexon-governance-abi-ed940bb1e367ebbbcd8cf37aca0a9f1c287321d6.tar.bz2
dexon-governance-abi-ed940bb1e367ebbbcd8cf37aca0a9f1c287321d6.tar.lz
dexon-governance-abi-ed940bb1e367ebbbcd8cf37aca0a9f1c287321d6.tar.xz
dexon-governance-abi-ed940bb1e367ebbbcd8cf37aca0a9f1c287321d6.tar.zst
dexon-governance-abi-ed940bb1e367ebbbcd8cf37aca0a9f1c287321d6.zip
Revert "contracts: remove round from addDKG functions"
This reverts commit 8741b524dcc3d86b3b7af20e693bcd915d87a2ae.
-rw-r--r--contracts/Governance.sol16
1 files changed, 8 insertions, 8 deletions
diff --git a/contracts/Governance.sol b/contracts/Governance.sol
index 8ad2fb2..38ce66b 100644
--- a/contracts/Governance.sol
+++ b/contracts/Governance.sol
@@ -187,20 +187,20 @@ contract Governance {
function proposeCRS(uint256 Round, bytes memory SignedCRS) public {
}
- // AddDKGComplaint(complaint)
- function addDKGComplaint(bytes memory Complaint) public {
+ // AddDKGComplaint(round, complaint)
+ function addDKGComplaint(uint256 Round, bytes memory Complaint) public {
}
- // AddDKGMasterPublicKey(key)
- function addDKGMasterPublicKey(bytes memory PublicKey) public {
+ // AddDKGMasterPublicKey(round, key)
+ function addDKGMasterPublicKey(uint256 Round, bytes memory PublicKey) public {
}
- // AddDKGMPKReady(ready)
- function addDKGMPKReady(bytes memory MPKReady) public {
+ // AddDKGMPKReady(round, ready)
+ function addDKGMPKReady(uint256 Round, bytes memory MPKReady) public {
}
- // AddDKGFinalize(finalize)
- function addDKGFinalize(bytes memory Finalize) public {
+ // AddDKGFinalize(round, finalize)
+ function addDKGFinalize(uint256 Round, bytes memory Finalize) public {
}
// Register(public_key, name, email, location, url)