Skip to content

Commit fe2ec1e

Browse files
authored
chore: Update create-consumer and update-consumer example (#2427)
jail duration param should not be quoted
1 parent 5fa0762 commit fe2ec1e

File tree

1 file changed

+8
-8
lines changed
  • x/ccv/provider/client/cli

1 file changed

+8
-8
lines changed

x/ccv/provider/client/cli/tx.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -259,12 +259,12 @@ where create_consumer.json has the following structure:
259259
},
260260
"infraction_parameters":{
261261
"double_sign":{
262-
"slash_fraction":"0.05",
263-
"jail_duration":"9223372036854775807"
262+
"slash_fraction": "0.05",
263+
"jail_duration": 9223372036854775807
264264
},
265265
"downtime":{
266-
"slash_fraction":"0.0001",
267-
"jail_duration":"600000000000"
266+
"slash_fraction": "0.0001",
267+
"jail_duration": 600000000000
268268
}
269269
},
270270
"allowlisted_reward_denoms": {
@@ -368,12 +368,12 @@ where update_consumer.json has the following structure:
368368
},
369369
"infraction_parameters":{
370370
"double_sign":{
371-
"slash_fraction":"0.05",
372-
"jail_duration":"9223372036854775807"
371+
"slash_fraction": "0.05",
372+
"jail_duration": 9223372036854775807
373373
},
374374
"downtime":{
375-
"slash_fraction":"0.0001",
376-
"jail_duration":"600000000000"
375+
"slash_fraction": "0.0001",
376+
"jail_duration": 600000000000
377377
}
378378
},
379379
"allowlisted_reward_denoms": {

0 commit comments

Comments
 (0)