Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ganeshvanahalli committed Dec 9, 2024
1 parent 5eb9704 commit 81dcb5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion system_tests/bold_challenge_protocol_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ func testChallengeProtocolBOLD(t *testing.T, spawnerOpts ...server_arb.SpawnerOp
challengemanager.StackWithMode(modes.MakeMode),
challengemanager.StackWithPostingInterval(time.Second * 3),
challengemanager.StackWithPollingInterval(time.Second),
challengemanager.StackWithMinimumGapToParentAssertionCreationTime(0),
challengemanager.StackWithMinimumGapToParentAssertion(0),
challengemanager.StackWithAverageBlockCreationTime(time.Second),
}

Expand Down
2 changes: 1 addition & 1 deletion system_tests/bold_new_challenge_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ func startBoldChallengeManager(t *testing.T, ctx context.Context, builder *NodeB
challengemanager.StackWithPostingInterval(time.Second * 3),
challengemanager.StackWithPollingInterval(time.Second),
challengemanager.StackWithAverageBlockCreationTime(time.Second),
challengemanager.StackWithMinimumGapToParentAssertionCreationTime(0),
challengemanager.StackWithMinimumGapToParentAssertion(0),
}

challengeManager, err := challengemanager.NewChallengeStack(
Expand Down
2 changes: 1 addition & 1 deletion system_tests/overflow_assertions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ func TestOverflowAssertions(t *testing.T) {
challengemanager.StackWithPostingInterval(time.Second),
challengemanager.StackWithPollingInterval(time.Millisecond * 500),
challengemanager.StackWithAverageBlockCreationTime(time.Second),
challengemanager.StackWithMinimumGapToParentAssertionCreationTime(0),
challengemanager.StackWithMinimumGapToParentAssertion(0),
}

manager, err := challengemanager.NewChallengeStack(
Expand Down

0 comments on commit 81dcb5a

Please sign in to comment.