diff options
author | Wei-Ning Huang <aitjcize@gmail.com> | 2018-11-14 10:57:53 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 20:54:27 +0800 |
commit | 58490067c97e072678540ba5a5fcb7c34b09e04a (patch) | |
tree | c820cd9b900f2b3533571f656b35d8fdd8e60a6b /params/config.go | |
parent | 95e89d44a3d9ffd300aa2cb7519b45cea155c89b (diff) | |
download | dexon-58490067c97e072678540ba5a5fcb7c34b09e04a.tar dexon-58490067c97e072678540ba5a5fcb7c34b09e04a.tar.gz dexon-58490067c97e072678540ba5a5fcb7c34b09e04a.tar.bz2 dexon-58490067c97e072678540ba5a5fcb7c34b09e04a.tar.lz dexon-58490067c97e072678540ba5a5fcb7c34b09e04a.tar.xz dexon-58490067c97e072678540ba5a5fcb7c34b09e04a.tar.zst dexon-58490067c97e072678540ba5a5fcb7c34b09e04a.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/config.go')
-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 405f32c1b..443a457d2 100644 --- a/params/config.go +++ b/params/config.go @@ -210,7 +210,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, |