Merge branch 'master' into mononaut/block-health-calculation

This commit is contained in:
wiz 2023-02-23 13:11:00 +09:00 committed by GitHub
commit ba2aa0456c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 4 deletions

View File

@ -72,7 +72,7 @@ export const chartColors = [
]; ];
export const poolsColor = { export const poolsColor = {
'unknown': '#9C9C9C', 'unknown': '#FDD835',
}; };
export const feeLevels = [1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100, 125, 150, 175, 200, export const feeLevels = [1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100, 125, 150, 175, 200,

View File

@ -173,7 +173,7 @@ export class HashrateChartPoolsComponent implements OnInit {
this.chartOptions = { this.chartOptions = {
title: title, title: title,
animation: false, animation: false,
color: chartColors, color: chartColors.filter(color => color !== '#FDD835'),
grid: { grid: {
right: this.right, right: this.right,
left: this.left, left: this.left,

View File

@ -4,7 +4,6 @@ import { ActivatedRoute, Router } from '@angular/router';
import { EChartsOption, PieSeriesOption } from 'echarts'; import { EChartsOption, PieSeriesOption } from 'echarts';
import { concat, Observable } from 'rxjs'; import { concat, Observable } from 'rxjs';
import { map, share, startWith, switchMap, tap } from 'rxjs/operators'; import { map, share, startWith, switchMap, tap } from 'rxjs/operators';
import { SinglePoolStats } from '../../interfaces/node-api.interface';
import { SeoService } from '../../services/seo.service'; import { SeoService } from '../../services/seo.service';
import { StorageService } from '../..//services/storage.service'; import { StorageService } from '../..//services/storage.service';
import { MiningService, MiningStats } from '../../services/mining.service'; import { MiningService, MiningStats } from '../../services/mining.service';
@ -220,7 +219,7 @@ export class PoolRankingComponent implements OnInit {
this.chartOptions = { this.chartOptions = {
animation: false, animation: false,
color: chartColors, color: chartColors.filter(color => color !== '#FDD835'),
tooltip: { tooltip: {
trigger: 'item', trigger: 'item',
textStyle: { textStyle: {

View File

@ -93,6 +93,10 @@ export class PriceService {
* @param blockTimestamp * @param blockTimestamp
*/ */
getPriceForTimestamp(blockTimestamp: number): Price | null { getPriceForTimestamp(blockTimestamp: number): Price | null {
if (!blockTimestamp) {
return undefined;
}
const priceTimestamps = Object.keys(this.historicalPrice.prices); const priceTimestamps = Object.keys(this.historicalPrice.prices);
priceTimestamps.push(Number.MAX_SAFE_INTEGER.toString()); priceTimestamps.push(Number.MAX_SAFE_INTEGER.toString());
priceTimestamps.sort().reverse(); priceTimestamps.sort().reverse();