diff --git a/app/src/components/transaction/transaction.html b/app/src/components/transaction/transaction.html index 1e31754..9139ab4 100644 --- a/app/src/components/transaction/transaction.html +++ b/app/src/components/transaction/transaction.html @@ -17,41 +17,45 @@ -
-
-
- No Inputs (Newly Generated Coins) -
-
-
-
-
-
{{ vin.addr }}
-

{{ vin.value + ' BTC' }}

-
-
+ + + No Inputs (Newly Generated Coins) + + + + + + {{ vin.addr }} + {{ vin.value + ' BTC' }} + + +
- +
>
-
-
-

{{ getAddress(vout) }} {{ vout.value + ' BTC' }} (S)(U)

-
-
+ + + {{ getAddress(vout) }} +
+ {{ vout.value + ' BTC' }} (S)(U) +
+
+
- Fee + Fee {{ tx.fees + 'BTC' }} - - Confirmations + + {{ tx.confirmations }} Confirmations + {{ tx.valueOut + ' BTC' }} diff --git a/app/src/pages/transaction/transaction.ts b/app/src/pages/transaction/transaction.ts index 50f2d4b..0d3eabb 100644 --- a/app/src/pages/transaction/transaction.ts +++ b/app/src/pages/transaction/transaction.ts @@ -31,7 +31,6 @@ export class TransactionPage { this.http.get(this.api.apiPrefix + 'tx/' + this.txId).subscribe( (data) => { this.tx = JSON.parse(data['_body']); - console.log('tx', this.tx); this.loading = false; }, (err) => {