Skip to content

Commit

Permalink
Process sync objects with concurrency (#2906)
Browse files Browse the repository at this point in the history
  • Loading branch information
dapplion authored Jul 29, 2021
1 parent b90577d commit 0b01245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/lodestar/src/network/gossip/validation/queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const gossipQueueOpts: {[K in GossipType]: Pick<JobQueueOpts, "maxLength" | "typ
[GossipType.voluntary_exit]: {maxLength: 4096, type: QueueType.FIFO},
[GossipType.proposer_slashing]: {maxLength: 4096, type: QueueType.FIFO},
[GossipType.attester_slashing]: {maxLength: 4096, type: QueueType.FIFO},
[GossipType.sync_committee_contribution_and_proof]: {maxLength: 4096, type: QueueType.LIFO},
[GossipType.sync_committee]: {maxLength: 4096, type: QueueType.LIFO},
[GossipType.sync_committee_contribution_and_proof]: {maxLength: 4096, type: QueueType.LIFO, maxConcurrency: 16},
[GossipType.sync_committee]: {maxLength: 4096, type: QueueType.LIFO, maxConcurrency: 64},
};

/**
Expand Down

0 comments on commit 0b01245

Please sign in to comment.