mirror of
https://github.com/mempool/mempool.git
synced 2024-11-19 09:52:14 +01:00
Fix for block transition when switching networks.
This commit is contained in:
parent
0f611ecf8a
commit
251b8cdd8d
@ -46,6 +46,12 @@ export class BlockchainBlocksComponent implements OnInit, OnDestroy {
|
||||
if (this.blocks.some((b) => b.height === block.height)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (this.blocks.length && block.height !== this.blocks[0].height + 1) {
|
||||
this.blocks = [];
|
||||
this.blocksFilled = false;
|
||||
}
|
||||
|
||||
this.blocks.unshift(block);
|
||||
this.blocks = this.blocks.slice(0, 8);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user