diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-16 19:26:29 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 88b272df86618979916a2b9f45723745dd556245 (patch) | |
tree | 7e33b4753e3920e65361991d695aeb1cadba92d1 /params | |
parent | 0c555d3f347dc8458ddae614b093c9b11d54e629 (diff) | |
download | dexon-88b272df86618979916a2b9f45723745dd556245.tar dexon-88b272df86618979916a2b9f45723745dd556245.tar.gz dexon-88b272df86618979916a2b9f45723745dd556245.tar.bz2 dexon-88b272df86618979916a2b9f45723745dd556245.tar.lz dexon-88b272df86618979916a2b9f45723745dd556245.tar.xz dexon-88b272df86618979916a2b9f45723745dd556245.tar.zst dexon-88b272df86618979916a2b9f45723745dd556245.zip |
dex/core: misc bug fixes
Diffstat (limited to 'params')
-rw-r--r-- | params/config.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/params/config.go b/params/config.go index ddcc054e9..1188fc987 100644 --- a/params/config.go +++ b/params/config.go @@ -235,7 +235,7 @@ type DexconConfig struct { // String implements the stringer interface, returning the consensus engine details. func (d *DexconConfig) String() string { - 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", + 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 BlockReward: %v", d.GenesisCRSText, d.NumChains, d.LambdaBA, @@ -247,6 +247,7 @@ func (d *DexconConfig) String() string { d.RoundInterval, d.MinBlockInterval, d.MaxBlockInterval, + d.BlockReward, ) } |