mirror of
https://github.com/mempool/mempool.git
synced 2026-08-13 12:33:11 +02:00
Fix times
Co-authored-by: slaninas <slaninas@pm.me>
This commit is contained in:
parent
50d99634f7
commit
5d22023d19
1 changed files with 2 additions and 2 deletions
|
|
@ -47,8 +47,8 @@ class DifficultyAdjustmentApi {
|
|||
}
|
||||
|
||||
const timeAvg = timeAvgMins * 60 * 1000 ;
|
||||
const remainingTime = (remainingBlocks * timeAvg) + (now * 1000);
|
||||
const estimatedRetargetDate = remainingTime + now;
|
||||
const remainingTime = remainingBlocks * timeAvg;
|
||||
const estimatedRetargetDate = remainingTime + now * 1000;
|
||||
|
||||
return {
|
||||
progressPercent,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue