Temporarily revert x/slashing/params json field names to use dashes, for GoS compat (#3132)
This commit is contained in:
parent
131f93b898
commit
ac511abc5c
|
@ -30,13 +30,13 @@ func ParamTypeTable() params.TypeTable {
|
||||||
|
|
||||||
// Params - used for initializing default parameter for slashing at genesis
|
// Params - used for initializing default parameter for slashing at genesis
|
||||||
type Params struct {
|
type Params struct {
|
||||||
MaxEvidenceAge time.Duration `json:"max_evidence_age"`
|
MaxEvidenceAge time.Duration `json:"max-evidence-age"`
|
||||||
SignedBlocksWindow int64 `json:"signed_blocks_window"`
|
SignedBlocksWindow int64 `json:"signed-blocks-window"`
|
||||||
MinSignedPerWindow sdk.Dec `json:"min_signed_per_window"`
|
MinSignedPerWindow sdk.Dec `json:"min-signed-per-window"`
|
||||||
DoubleSignUnbondDuration time.Duration `json:"double_sign_unbond_duration"`
|
DoubleSignUnbondDuration time.Duration `json:"double-sign-unbond-duration"`
|
||||||
DowntimeUnbondDuration time.Duration `json:"downtime_unbond_duration"`
|
DowntimeUnbondDuration time.Duration `json:"downtime-unbond-duration"`
|
||||||
SlashFractionDoubleSign sdk.Dec `json:"slash_fraction_double_sign"`
|
SlashFractionDoubleSign sdk.Dec `json:"slash-fraction-double-sign"`
|
||||||
SlashFractionDowntime sdk.Dec `json:"slash_fraction_downtime"`
|
SlashFractionDowntime sdk.Dec `json:"slash-fraction-downtime"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Implements params.ParamStruct
|
// Implements params.ParamStruct
|
||||||
|
|
Loading…
Reference in New Issue