Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/sequencers/single/sequencer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1978,7 +1978,7 @@ func TestSequencer_CatchUp_CheckpointAdvancesDuringCatchUp(t *testing.T) {
func TestSequencer_CatchUp_MonotonicTimestamps(t *testing.T) {
// When a single DA epoch has more forced txs than fit in one block,
// catch-up must produce strictly monotonic timestamps across the
// resulting blocks. The jitter scheme is:
// resulting blocks. The jitter scheme is:
// epochStart = daEndTime - totalEpochTxs * 1ms
// blockTimestamp = epochStart + txIndexForTimestamp * 1ms
// where txIndexForTimestamp is the cumulative consumed-tx count
Expand Down
2 changes: 1 addition & 1 deletion pkg/store/data_store_adapter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ func TestDataStoreAdapter_ContextTimeout(t *testing.T) {
time.Sleep(1 * time.Millisecond) // Ensure context is expired

// Operations should still work with in-memory store
// but this tests the context is being passed through
// but this tests that the context is being passed through
Comment thread
weifanglab marked this conversation as resolved.
_, d1 := types.GetRandomBlock(1, 1, "test-chain")
// Note: In-memory store doesn't actually check context, but this verifies
// the adapter passes the context through
Expand Down
2 changes: 1 addition & 1 deletion pkg/store/header_store_adapter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ func TestHeaderStoreAdapter_ContextTimeout(t *testing.T) {
time.Sleep(1 * time.Millisecond) // Ensure context is expired

// Operations should still work with in-memory store
// but this tests the context is being passed through
// but this tests that the context is being passed through
h1, _ := types.GetRandomBlock(1, 1, "test-chain")
// Note: In-memory store doesn't actually check context, but this verifies
// the adapter passes the context through
Expand Down