Skip to content

Commit

Permalink
fix: wrong rotated quorum type (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin Shuplenkov authored May 1, 2023
1 parent 22dfe3b commit f9a2e7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/deterministicmnlist/SimplifiedMNList.js
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ SimplifiedMNList.prototype.isLLMQTypeRotated =
function isLLMQTypeRotated(llmq) {
return llmq === constants.LLMQ_TYPES.LLMQ_DEVNET_DIP0024 ||
llmq === constants.LLMQ_TYPES.LLMQ_TYPE_TEST_DIP0024 ||
llmq === constants.LLMQ_TYPES.LLMQ_TYPE_25_67;
llmq === constants.LLMQ_TYPES.LLMQ_TYPE_60_75;
};

/**
Expand Down

0 comments on commit f9a2e7d

Please sign in to comment.