Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

retry block processing #4600

Merged
merged 18 commits into from
Nov 18, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
adopts pr suggestions
Signed-off-by: Justin Florentine <justin+github@florentine.us>
  • Loading branch information
jflo committed Nov 18, 2022
commit 75cd230450b7481ba92b9e001deb96ed5bc99a05
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,6 @@ public void exceptionDuringBuildingBlockShouldNotBeInvalid()

ArgumentCaptor<Block> block = ArgumentCaptor.forClass(Block.class);


verify(mergeContext, times(txPerBlock + 1))
.putPayloadById(eq(payloadId), block.capture()); // +1 for the empty
assertThat(block.getValue().getBody().getTransactions().size()).isEqualTo(txPerBlock);
Expand Down