Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ describe('e2e_p2p_duplicate_proposal_slash', () => {
coinbase: coinbase1,
broadcastEquivocatedProposals: true,
dontStartSequencer: true,
// Prevent HA peer proposals from being added to the archiver, so both
// malicious nodes build their own blocks instead of one yielding to the other.
skipPushProposedBlocksToArchiver: true,
},
t.ctx.dateProvider,
BOOT_NODE_UDP_PORT + 1,
Expand All @@ -150,6 +153,9 @@ describe('e2e_p2p_duplicate_proposal_slash', () => {
coinbase: coinbase2,
broadcastEquivocatedProposals: true,
dontStartSequencer: true,
// Prevent HA peer proposals from being added to the archiver, so both
// malicious nodes build their own blocks instead of one yielding to the other.
skipPushProposedBlocksToArchiver: true,
},
t.ctx.dateProvider,
BOOT_NODE_UDP_PORT + 2,
Expand Down
Loading