Add missing frontend audit flag for testnet4

This commit is contained in:
natsoni
2024-10-30 15:19:46 +01:00
parent c0ef01d4da
commit f08fa034cc
2 changed files with 7 additions and 0 deletions

View File

@@ -922,6 +922,11 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
return false;
}
break;
case 'testnet4':
if (blockHeight < this.stateService.env.TESTNET4_BLOCK_AUDIT_START_HEIGHT) {
return false;
}
break;
case 'signet':
if (blockHeight < this.stateService.env.SIGNET_BLOCK_AUDIT_START_HEIGHT) {
return false;