Add mining pool logo in the pool stats page

This commit is contained in:
nymkappa
2022-02-11 18:29:38 +09:00
parent e1f3c662b2
commit 9e64592aca
2 changed files with 7 additions and 1 deletions

View File

@@ -48,6 +48,11 @@ export class PoolComponent implements OnInit {
}
return this.apiService.getPoolStats$(this.poolId, params[1] ?? '1w');
}),
map((poolStats) => {
return Object.assign({
logo: `./resources/mining-pools/` + poolStats.pool.name.toLowerCase().replace(' ', '').replace('.', '') + '.svg'
}, poolStats);
})
);
this.blocks$ = this.fromHeightSubject