mirror of
https://github.com/mempool/mempool.git
synced 2024-12-28 01:04:28 +01:00
Fix spam call to /api/v1/mining/pool/{slug}
This commit is contained in:
parent
fb0e7ec240
commit
a20c401c83
@ -56,12 +56,12 @@ export class PoolComponent implements OnInit {
|
||||
switchMap((data) => {
|
||||
this.isLoading = false;
|
||||
this.prepareChartOptions(data.hashrates.map(val => [val.timestamp * 1000, val.avgHashrate]));
|
||||
return slug;
|
||||
return [slug];
|
||||
}),
|
||||
);
|
||||
}),
|
||||
switchMap(() => {
|
||||
return this.apiService.getPoolStats$(this.slug);
|
||||
switchMap((slug) => {
|
||||
return this.apiService.getPoolStats$(slug);
|
||||
}),
|
||||
map((poolStats) => {
|
||||
let regexes = '"';
|
||||
@ -124,7 +124,7 @@ export class PoolComponent implements OnInit {
|
||||
align: 'left',
|
||||
},
|
||||
borderColor: '#000',
|
||||
formatter: function(ticks: any[]) {
|
||||
formatter: function (ticks: any[]) {
|
||||
let hashratePowerOfTen: any = selectPowerOfTen(1);
|
||||
let hashrate = ticks[0].data[1];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user