Get Median Fee on page reload

This commit is contained in:
github2k20 2021-08-11 00:17:25 +05:30
parent 7a8b2db3fb
commit 47a6118ffb

View File

@ -97,6 +97,13 @@ export class BlockComponent implements OnInit, OnDestroy {
})
);
}
this.stateService.blocks$.subscribe(([block]) => {
if (block.id === blockHash) {
this.block = block;
}
});
return this.electrsApiService.getBlock$(blockHash);
}
}),