summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2019-03-29 12:55:47 +0800
committerWei-Ning Huang <w@dexon.org>2019-03-29 12:55:47 +0800
commit56b0121f5b46811e93512ff03f54a606f2deee98 (patch)
tree97fad6f11e45ffa07342d0ced26423835071d5f7
parente4d09bc2fd22b63e1b5f096f87a1dd7f915a2a00 (diff)
downloaddexon-governance-abi-56b0121f5b46811e93512ff03f54a606f2deee98.tar
dexon-governance-abi-56b0121f5b46811e93512ff03f54a606f2deee98.tar.gz
dexon-governance-abi-56b0121f5b46811e93512ff03f54a606f2deee98.tar.bz2
dexon-governance-abi-56b0121f5b46811e93512ff03f54a606f2deee98.tar.lz
dexon-governance-abi-56b0121f5b46811e93512ff03f54a606f2deee98.tar.xz
dexon-governance-abi-56b0121f5b46811e93512ff03f54a606f2deee98.tar.zst
dexon-governance-abi-56b0121f5b46811e93512ff03f54a606f2deee98.zip
contracts: remove dkgSetSize
-rw-r--r--contracts/Governance.sol11
1 files changed, 4 insertions, 7 deletions
diff --git a/contracts/Governance.sol b/contracts/Governance.sol
index 529b08b..7ec736f 100644
--- a/contracts/Governance.sol
+++ b/contracts/Governance.sol
@@ -121,19 +121,16 @@ contract Governance {
// 31: notary set parameter: beta.
uint256 public notaryParamBeta; // stored as notaryParamBeta * 10^8
- // 32: DKG set size.
- uint256 public dkgSetSize;
-
- // 33: roundLength.
+ // 32: roundLength.
uint256 public roundLength;
- // 34: minBlockInterval.
+ // 33: minBlockInterval.
uint256 public minBlockInterval;
- // 35: Fine value.
+ // 34: Fine value.
uint256[] public fineValues;
- // 36: Fined records.
+ // 35: Fined records.
mapping(bytes32 => bool) public finedRecords;
// ----------