We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35fc77e commit 9d15d38Copy full SHA for 9d15d38
bin/gobject-prepare.js
@@ -95,7 +95,8 @@ async function main() {
95
96
let totalCycleCount = numPeriods - 1;
97
let endPeriod = startPeriod + totalCycleCount;
98
- let cycleCount = Math.max(3, endPeriod);
+ let cycleCount = endPeriod;
99
+ let displayCycleCount = Math.max(3, endPeriod);
100
let snapshot = {
101
ms: blockMs,
102
block: blockHeight,
@@ -107,7 +108,7 @@ async function main() {
107
108
secondsPerBlock,
109
);
110
let estimates = DashGov.estimateProposalCycles(
- cycleCount,
111
+ displayCycleCount,
112
snapshot,
113
114
0 commit comments