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 @@ -143,6 +143,9 @@ describe('e2e_p2p_duplicate_attestation_slash', () => {
attestToEquivocatedProposals: true, // Attest to all proposals - creates duplicate attestations
broadcastEquivocatedProposals: true, // Don't abort checkpoint building on duplicate block proposals
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 @@ -162,6 +165,9 @@ describe('e2e_p2p_duplicate_attestation_slash', () => {
attestToEquivocatedProposals: true, // Attest to all proposals - creates duplicate attestations
broadcastEquivocatedProposals: true, // Don't abort checkpoint building on duplicate block proposals
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