diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-13 16:48:50 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:49 +0800 |
commit | cdf1f022696971d9d6209d577ed0b578e7462007 (patch) | |
tree | 3d88cc5befb29d3c64fb3607adbeb01ff43d32eb /params | |
parent | 7574700a4ccd20bc15c3ba28f1671eb66769e8bc (diff) | |
download | dexon-cdf1f022696971d9d6209d577ed0b578e7462007.tar dexon-cdf1f022696971d9d6209d577ed0b578e7462007.tar.gz dexon-cdf1f022696971d9d6209d577ed0b578e7462007.tar.bz2 dexon-cdf1f022696971d9d6209d577ed0b578e7462007.tar.lz dexon-cdf1f022696971d9d6209d577ed0b578e7462007.tar.xz dexon-cdf1f022696971d9d6209d577ed0b578e7462007.tar.zst dexon-cdf1f022696971d9d6209d577ed0b578e7462007.zip |
core: populate genesis CRS in genesis state
Diffstat (limited to 'params')
-rw-r--r-- | params/config.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/params/config.go b/params/config.go index 0c64fb6bf..0ccc2fbc8 100644 --- a/params/config.go +++ b/params/config.go @@ -219,6 +219,7 @@ func (c *CliqueConfig) String() string { // DexconConfig is the consensus engine configs for DEXON consensus. type DexconConfig struct { + GenesisCRSText string `json:"genesisCRSText"` NumChains uint32 `json:"numChains"` LambdaBA uint64 `json:"lambdaBA"` LambdaDKG uint64 `json:"lambdaDKG"` @@ -233,7 +234,8 @@ type DexconConfig struct { // String implements the stringer interface, returning the consensus engine details. func (d *DexconConfig) String() string { - return fmt.Sprintf("{NumChains: %v LambdaBA: %v LambdaDKG: %v K: %v PhiRatio: %v NotarySetSize: %v DKGSetSize: %v RoundInterval: %v MinBlockInterval: %v MaxBlockInterval: %v", + return fmt.Sprintf("{GenesisCRSText: %v NumChains: %v LambdaBA: %v LambdaDKG: %v K: %v PhiRatio: %v NotarySetSize: %v DKGSetSize: %v RoundInterval: %v MinBlockInterval: %v MaxBlockInterval: %v", + d.GenesisCRSText, d.NumChains, d.LambdaBA, d.LambdaDKG, |