aboutsummaryrefslogtreecommitdiffstats
path: root/params
diff options
context:
space:
mode:
authorWei-Ning Huang <w@cobinhood.com>2018-10-16 19:26:29 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:23:39 +0800
commit7d938ac7fd4f787f6e4507ce69c6acc677eb8080 (patch)
tree664c98a1f37787d4352d2527b4f6752d9b9bc755 /params
parentab284ca86e5181cbd009aaa1e9b49d56eb532f97 (diff)
downloadgo-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.tar
go-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.tar.gz
go-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.tar.bz2
go-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.tar.lz
go-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.tar.xz
go-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.tar.zst
go-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.zip
dex/core: misc bug fixes
Diffstat (limited to 'params')
-rw-r--r--params/config.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/params/config.go b/params/config.go
index 27368541a..fc02c3aa3 100644
--- a/params/config.go
+++ b/params/config.go
@@ -245,7 +245,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,
@@ -257,6 +257,7 @@ func (d *DexconConfig) String() string {
d.RoundInterval,
d.MinBlockInterval,
d.MaxBlockInterval,
+ d.BlockReward,
)
}