Skip to content

Commit 25ef436

Browse files
authored
Simplify RoboTorq_in calculation in index.html
Removed unnecessary multiplication by 3600 for RoboTorq_in calculation. Signed-off-by: Jon Clark <chronicpainrewired@gmail.com>
1 parent 32bc1b6 commit 25ef436

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ <h3>Growth Projection</h3>
310310

311311
// --- CORE MATH ---
312312
const fleetTTP = ttp * brlas * robots;
313-
const RoboTorq_in = fleetTTP * 3600 * HOURS_PER_YEAR;
313+
const RoboTorq_in = fleetTTP * HOURS_PER_YEAR;
314314
const extraMintedYear1 = RoboTorq_in * (gamble - 1);
315315
const totalDistributedYear1 = RoboTorq_in + extraMintedYear1;
316316

@@ -380,7 +380,7 @@ <h3>Growth Projection</h3>
380380
const initialGrowth = parseFloat(document.getElementById('initialGrowth').value) || 0;
381381

382382
const fleetTTP = ttp * brlas * robots;
383-
const RoboTorq_in = fleetTTP * 3600 * HOURS_PER_YEAR;
383+
const RoboTorq_in = fleetTTP * HOURS_PER_YEAR;
384384
const extraMintedYear1 = RoboTorq_in * (gamble - 1);
385385
const totalDistributedPerYear = [RoboTorq_in + extraMintedYear1];
386386

0 commit comments

Comments
 (0)