Skip to content

Commit

Permalink
bump number of nodes in reqresp test
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddiaa0 committed Oct 2, 2024
1 parent 295ef75 commit 863457c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/end-to-end/src/e2e_p2p/reqresp_tx.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ describe('e2e_p2p_reqresp_tx', () => {
t.logger.info('Submitting transactions');
// Only submit transactions to the first two nodes, so that we avoid our sequencer with a mocked p2p layer being picked to produce a block.
// If the shuffling algorithm changes, then this will need to be updated.
for (let i = 0; i < 2; i++) {
for (let i = 0; i < NUM_NODES; i++) {
const context = await createPXEServiceAndSubmitTransactions(t.logger, nodes[i], NUM_TXS_PER_NODE);
contexts.push(context);
}
Expand Down

0 comments on commit 863457c

Please sign in to comment.