mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
fix: adjust llmq_max_blocks()
This commit is contained in:
parent
35b0d5f7c8
commit
86e8556ecc
@ -555,7 +555,7 @@ public:
|
||||
constexpr int llmq_max_blocks() {
|
||||
int max_blocks{0};
|
||||
for (const auto& llmq : Consensus::available_llmqs) {
|
||||
int blocks = llmq.useRotation ? llmq.dkgInterval * 4 : llmq.dkgInterval * llmq.signingActiveQuorumCount;
|
||||
int blocks = (llmq.useRotation ? 1 : llmq.signingActiveQuorumCount) * llmq.dkgInterval;
|
||||
max_blocks = std::max(max_blocks, blocks);
|
||||
}
|
||||
return max_blocks;
|
||||
|
Loading…
Reference in New Issue
Block a user