Merge branch 'master' into natsoni/use-adjusted-time-avg

This commit is contained in:
softsimon
2024-12-21 22:10:04 +07:00
committed by GitHub
375 changed files with 6272 additions and 2623 deletions

View File

@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, HostListener, ElementRef, ViewChild, Inject, Input, LOCALE_ID, OnInit } from '@angular/core';
import { combineLatest, Observable } from 'rxjs';
import { map } from 'rxjs/operators';
import { StateService } from '../..//services/state.service';
import { StateService } from '@app/services/state.service';
interface EpochProgress {
base: string;
@@ -247,4 +247,4 @@ function getNextBlockSubsidy(height: number): number {
// Subsidy is cut in half every 210,000 blocks which will occur approximately every 4 years.
subsidy >>= BigInt(halvings);
return Number(subsidy);
}
}