Skip to content

Commit

Permalink
jail duration param should not be quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
stana-miric committed Dec 10, 2024
1 parent 5fa0762 commit 2bed0c4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions x/ccv/provider/client/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -259,12 +259,12 @@ where create_consumer.json has the following structure:
},
"infraction_parameters":{
"double_sign":{
"slash_fraction":"0.05",
"jail_duration":"9223372036854775807"
"slash_fraction": "0.05",
"jail_duration": 9223372036854775807
},
"downtime":{
"slash_fraction":"0.0001",
"jail_duration":"600000000000"
"slash_fraction": "0.0001",
"jail_duration": 600000000000
}
},
"allowlisted_reward_denoms": {
Expand Down Expand Up @@ -368,12 +368,12 @@ where update_consumer.json has the following structure:
},
"infraction_parameters":{
"double_sign":{
"slash_fraction":"0.05",
"jail_duration":"9223372036854775807"
"slash_fraction": "0.05",
"jail_duration": 9223372036854775807
},
"downtime":{
"slash_fraction":"0.0001",
"jail_duration":"600000000000"
"slash_fraction": "0.0001",
"jail_duration": 600000000000
}
},
"allowlisted_reward_denoms": {
Expand Down

0 comments on commit 2bed0c4

Please sign in to comment.