[accelerator] fix pizza accel copy/eta

This commit is contained in:
nymkappa
2024-04-16 21:09:30 +09:00
parent 7f8dc74146
commit 3db89e3dee
2 changed files with 9 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ import { AudioService } from '../../services/audio.service';
styleUrls: ['./accelerate-checkout.component.scss']
})
export class AccelerateCheckout implements OnInit, OnDestroy {
@Input() eta: number = Date.now() + 123456789;
@Input() eta: number | null = null;
@Input() txid: string = '70c18d76cdb285a1b5bd87fdaae165880afa189809c30b4083ff7c0e69ee09ad';
@Input() scrollEvent: boolean;
@Output() close = new EventEmitter<null>();