File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ const (
34
34
ConsumerToSendToProviderName = "cons_to_send_to_provider"
35
35
36
36
// UnbondingPeriod is the time duration to mature the VSC packets
37
- UnbondingPeriod time.Duration = 600 * time .Second
37
+ UnbondingPeriod time.Duration = 96 * time .Hour
38
38
)
39
39
40
40
// Iota generated keys/key prefixes (as a byte), supports 256 possible values
Original file line number Diff line number Diff line change @@ -126,11 +126,11 @@ func ComputeConsumerUnbondingPeriod(providerUnbondingPeriod time.Duration) time.
126
126
// In general, the unbonding period on the consumer
127
127
// is one day less than the unbonding period on the provider
128
128
return providerUnbondingPeriod - 24 * time .Hour // one day less
129
- } else if providerUnbondingPeriod >= 24 * time .Hour {
130
- // If the unbonding period on the provider is
131
- // between one day and one week, then the unbonding period
132
- // on the consumer is one hour less
133
- return providerUnbondingPeriod - time .Hour // one hour less
129
+ // } else if providerUnbondingPeriod >= 24*time.Hour {
130
+ // // If the unbonding period on the provider is
131
+ // // between one day and one week, then the unbonding period
132
+ // // on the consumer is one hour less
133
+ // return providerUnbondingPeriod - time.Hour // one hour less
134
134
} else {
135
135
// If the unbonding period on the provider is
136
136
// less than one day, then the unbonding period
You can’t perform that action at this time.
0 commit comments