aboutsummaryrefslogtreecommitdiffstats
path: root/params/config.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-10-19 16:31:44 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:50 +0800
commitb52b1b2106f075260674660638aa60fe5ec81f87 (patch)
tree84f1d5d95d143fe0f20daed8aa42ac85b4a6363e /params/config.go
parent7febfae8bba63f6b7e1326b22437dee38989c400 (diff)
downloaddexon-b52b1b2106f075260674660638aa60fe5ec81f87.tar
dexon-b52b1b2106f075260674660638aa60fe5ec81f87.tar.gz
dexon-b52b1b2106f075260674660638aa60fe5ec81f87.tar.bz2
dexon-b52b1b2106f075260674660638aa60fe5ec81f87.tar.lz
dexon-b52b1b2106f075260674660638aa60fe5ec81f87.tar.xz
dexon-b52b1b2106f075260674660638aa60fe5ec81f87.tar.zst
dexon-b52b1b2106f075260674660638aa60fe5ec81f87.zip
core: vm: add blockReward to governance
Diffstat (limited to 'params/config.go')
-rw-r--r--params/config.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/params/config.go b/params/config.go
index 45f515c7a..fe21e101d 100644
--- a/params/config.go
+++ b/params/config.go
@@ -223,8 +223,9 @@ func (c *CliqueConfig) String() string {
// DexconConfig is the consensus engine configs for DEXON consensus.
type DexconConfig struct {
- Owner common.Address `json:"owner"`
GenesisCRSText string `json:"genesisCRSText"`
+ Owner common.Address `json:"owner"`
+ BlockReward *big.Int `json:"blockReward"`
NumChains uint32 `json:"numChains"`
LambdaBA uint64 `json:"lambdaBA"`
LambdaDKG uint64 `json:"lambdaDKG"`
@@ -235,7 +236,6 @@ type DexconConfig struct {
RoundInterval uint64 `json:"roundInterval"`
MinBlockInterval uint64 `json:"minBlockInterval"`
MaxBlockInterval uint64 `json:"maxBlockInterval"`
- BlockReward *big.Int `json:"blockReward"`
}
type dexconConfigSpecMarshaling struct {
@@ -244,9 +244,10 @@ type dexconConfigSpecMarshaling struct {
// String implements the stringer interface, returning the consensus engine details.
func (d *DexconConfig) String() string {
- return fmt.Sprintf("{Owner: %v 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.Owner,
+ return fmt.Sprintf("{GenesisCRSText: %v Owner: %v BlockReward: %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.Owner,
+ d.BlockReward,
d.NumChains,
d.LambdaBA,
d.LambdaDKG,
@@ -257,7 +258,6 @@ func (d *DexconConfig) String() string {
d.RoundInterval,
d.MinBlockInterval,
d.MaxBlockInterval,
- d.BlockReward,
)
}