Skip to content

Commit

Permalink
Remove 4 week time advancement
Browse files Browse the repository at this point in the history
  • Loading branch information
p-offtermatt committed Dec 11, 2023
1 parent 1659892 commit 21813de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/mbt/model/ccv_model.qnt
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ module ccv_model {
// Note that these can still be combined, so in effect we can get all time advancements by any amount of seconds.
// These should be smaller than the minimal TrustingPeriodPerChain,
// otherwise connections will break down.
pure val timeAdvancements = Set(1 * Second, 1 * Day, 1 * Week - 1 * Hour, 4 * Week)
pure val timeAdvancements = Set(1 * Second, 1 * Day, 1 * Week - 1 * Hour, 2 * Week - 2 * Hour)

pure def emptyAction =
{
Expand Down Expand Up @@ -512,7 +512,7 @@ module ccv_model {
assert(currentState.consumerStates.get("consumer1").chainState.currentValidatorSet == InitialValidatorSet.put("node1", 200)),
// advance time on provider and consumer until unbonding period is over - ensure that the consumer and provider
// stay in sync relative to each other
// We want to make sure the steps we make are shorter than the trusting period,
// We want to make sure the steps we make are shorter the trusting period,
// since that would time out clients in reality.
4.reps(
i =>
Expand Down

0 comments on commit 21813de

Please sign in to comment.