Display tx data on bisq transaction page.

This commit is contained in:
softsimon
2020-07-19 15:28:27 +07:00
parent cca69556d0
commit ee6108ccec
3 changed files with 50 additions and 14 deletions

View File

@@ -21,6 +21,9 @@ export class TxFeaturesComponent implements OnChanges {
constructor() { }
ngOnChanges() {
if (!this.tx) {
return;
}
this.segwitGains = calcSegwitFeeGains(this.tx);
this.isRbfTransaction = this.tx.vin.some((v) => v.sequence < 0xfffffffe);
}