Skip to content

Commit

Permalink
remove skip
Browse files Browse the repository at this point in the history
  • Loading branch information
rachel-bousfield committed May 3, 2024
1 parent 18d70df commit 1973921
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion arbnode/batch_poster.go
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@ func (b *BatchPoster) maybePostSequencerBatch(ctx context.Context) (bool, error)
}

config := b.config()
forcePostBatch := time.Since(firstMsgTime) >= config.MaxDelay
forcePostBatch := config.MaxDelay <= 0 || time.Since(firstMsgTime) >= config.MaxDelay

var l1BoundMaxBlockNumber uint64 = math.MaxUint64
var l1BoundMaxTimestamp uint64 = math.MaxUint64
Expand Down
4 changes: 0 additions & 4 deletions system_tests/program_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -926,10 +926,6 @@ func testMemory(t *testing.T, jit bool) {
Fatal(t, "unexpected memory footprint", programMemoryFootprint)
}

if !t.Failed() {
validateBlocks(t, 3, jit, builder)
t.Skip("Succeeded up to here. Diagnose tests with larger numbers of blocks later.")
}
// check edge case where memory doesn't require `pay_for_memory_grow`
tx = l2info.PrepareTxTo("Owner", &growFixed, 1e9, nil, args)
ensure(tx, l2client.SendTransaction(ctx, tx))
Expand Down

0 comments on commit 1973921

Please sign in to comment.