Reduced required confirmations to 6
This commit is contained in:
parent
01dcdaecd0
commit
5c043b1e0e
2 changed files with 2 additions and 1 deletions
|
@ -39,7 +39,7 @@
|
|||
<mat-card class="alert-success" *ngIf = "txs.length > 0">
|
||||
<h4>Login received!</h4>
|
||||
<mat-list>
|
||||
<mat-list-item *ngFor="let tx of txsUpdate | async">It needs {{10 - tx.confirmations}} more confirmations.</mat-list-item>
|
||||
<mat-list-item *ngFor="let tx of txsUpdate | async">It needs {{6 - tx.confirmations}} more confirmations.</mat-list-item>
|
||||
</mat-list>
|
||||
</mat-card>
|
||||
<mat-card [formGroup]="entryForm" *ngIf="!prompt && txs.length <=0">
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
</div>
|
||||
|
||||
<mat-dialog-content>
|
||||
<div align="center" class="text">Be sure to include your reply-to address.</div>
|
||||
<div align="center" id="checkout-qr"></div>
|
||||
</mat-dialog-content>
|
||||
<mat-dialog-actions align="center">
|
||||
|
|
Loading…
Reference in a new issue