Replace difficulty adjustment timestamp with block height

This commit is contained in:
nymkappa
2022-03-07 18:06:07 +01:00
parent 7ff7ab34e9
commit af4eb0c974
4 changed files with 60 additions and 26 deletions

View File

@@ -115,7 +115,7 @@ export class HashrateChartComponent implements OnInit {
}
return {
availableTimespanDay: availableTimespanDay,
difficulty: this.tableOnly ? (this.isMobile() ? tableData.slice(0, 12) : tableData.slice(0, 9)) : tableData
difficulty: this.tableOnly ? tableData.slice(0, 5) : tableData
};
}),
);