Merge pull request #5594 from mempool/nymkappa/revalidate-accel

[accelerator] revalidate user choice after choosing fee option
This commit is contained in:
wiz 2024-10-17 15:09:31 +09:00 committed by GitHub
commit ca7221f8b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -374,6 +374,7 @@ export class AccelerateCheckout implements OnInit, OnDestroy {
this.selectFeeRateIndex = index;
this.userBid = Math.max(0, fee);
this.cost = this.userBid + this.estimate.mempoolBaseFee + this.estimate.vsizeFee;
this.validateChoice();
}
}