diff options
author | Wei-Ning Huang <aitjcize@gmail.com> | 2018-11-14 10:57:53 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:56 +0800 |
commit | c2adbce8887f41acc19dea4b62c0b209b9eb2072 (patch) | |
tree | bf68c51a05e74a53fdf060165778cb35ec2ec964 /params | |
parent | 083072c30c6dc407466e4ab48a7c81b42233f225 (diff) | |
download | dexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.tar dexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.tar.gz dexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.tar.bz2 dexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.tar.lz dexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.tar.xz dexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.tar.zst dexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.zip |
core: validate DKG set with correct nodeset in round-2 (#19)
* vendor: sync consensus core
* core: validate DKG set with correct nodeset in round-2
Diffstat (limited to 'params')
-rw-r--r-- | params/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/params/config.go b/params/config.go index fc3eecdc0..171848fee 100644 --- a/params/config.go +++ b/params/config.go @@ -213,7 +213,7 @@ type dexconConfigSpecMarshaling struct { // String implements the stringer interface, returning the consensus engine details. func (d *DexconConfig) String() string { - return fmt.Sprintf("{GenesisCRSText: %v Owner: %v BlockReward: %v BlockGasLimit: %v NumChains: %v LambdaBA: %v LambdaDKG: %v K: %v PhiRatio: %v NotarySetSize: %v DKGSetSize: %v RoundInterval: %v MinBlockInterval: %v", + return fmt.Sprintf("{GenesisCRSText: %v Owner: %v BlockReward: %v BlockGasLimit: %v NumChains: %v LambdaBA: %v LambdaDKG: %v K: %v PhiRatio: %v NotarySetSize: %v DKGSetSize: %v RoundInterval: %v MinBlockInterval: %v}", d.GenesisCRSText, d.Owner, d.BlockReward, |