From 39bb93970b79321472f497a18234d65c4f7c4067 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sat, 1 May 2021 21:46:49 +0400 Subject: [PATCH] Lower height where taproot signaling cal be visible. --- frontend/src/app/components/block/block.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/components/block/block.component.ts b/frontend/src/app/components/block/block.component.ts index 80fb4b847..1d2fd844d 100644 --- a/frontend/src/app/components/block/block.component.ts +++ b/frontend/src/app/components/block/block.component.ts @@ -212,6 +212,6 @@ export class BlockComponent implements OnInit, OnDestroy { if (this.stateService.network !== '') { return false; } - return this.block && this.block.height > 681407 && (new Date().getTime() / 1000) < 1628640000; + return this.block && this.block.height > 681393 && (new Date().getTime() / 1000) < 1628640000; } }