Skip to content

Commit

Permalink
circuit breaker params (cosmos#444)
Browse files Browse the repository at this point in the history
* changes

* Update params.go
  • Loading branch information
shaspitz authored Nov 15, 2022
1 parent b084048 commit 34c28bc
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions proto/interchain_security/ccv/provider/v1/provider.proto
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,18 @@ message Params {
// to timeout VSC packets even when a consumer chain is not live.
google.protobuf.Duration vsc_timeout_period = 5
[(gogoproto.nullable) = false, (gogoproto.stdduration) = true];

// The period for which the slash meter is replenished
google.protobuf.Duration slash_meter_replenish_period = 6
[(gogoproto.nullable) = false, (gogoproto.stdduration) = true];

// The fraction of total voting power that is replenished to the slash meter every replenish period.
// This param also serves as a maximum fraction of total voting power that the slash meter can hold.
string slash_meter_replenish_fraction = 7;

// The maximum amount of pending slash packets that can be queued for a consumer
// before the provider chain halts.
int64 max_pending_slash_packets = 8;
}

message HandshakeMetadata {
Expand Down

0 comments on commit 34c28bc

Please sign in to comment.