Skip to content

Commit

Permalink
fix: adds missing item to QuorumEntry (porting v20 changes additions) (
Browse files Browse the repository at this point in the history
  • Loading branch information
knst authored Mar 25, 2023
1 parent bc98b70 commit 474d6fa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/deterministicmnlist/QuorumEntry.js
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,11 @@ QuorumEntry.getParams = function getParams(llmqType) {
params.threshold = 67;
params.maximumActiveQuorumsCount = 24;
return params;
case constants.LLMQ_TYPES.LLMQ_TYPE_25_67:
params.size = 25;
params.threshold = 67;
params.maximumActiveQuorumsCount = 24;
return params;
case constants.LLMQ_TYPES.LLMQ_TYPE_LLMQ_TEST:
params.size = 3;
params.threshold = 2;
Expand Down

0 comments on commit 474d6fa

Please sign in to comment.