Replace difficulty adjustment timestamp with block height

This commit is contained in:
nymkappa
2022-03-07 18:06:07 +01:00
parent 5d16a30cf2
commit b7254e7aca
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
};
}),
);