Handle coinbase transactions no longer has undefined fee.
This commit is contained in:
@@ -74,6 +74,9 @@ export class TransactionComponent implements OnInit, OnDestroy {
|
||||
return;
|
||||
}
|
||||
this.tx = tx;
|
||||
if (tx.fee === undefined) {
|
||||
this.tx.fee = 0;
|
||||
}
|
||||
this.isLoadingTx = false;
|
||||
this.error = undefined;
|
||||
this.waitingForTransaction = false;
|
||||
|
||||
Reference in New Issue
Block a user