Skip to content
This repository has been archived by the owner on Oct 8, 2019. It is now read-only.

Commit

Permalink
fix(BCH): 'From' address displays legacy BCH address
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed Jan 19, 2018
1 parent c345475 commit 93fd9fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/transaction-description-bcash.pug
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
.flex-row
span.f-14.em-300 From:
|  
span.overflow-scroll.f-14.em-300(uib-tooltip="{{tx.from.identity >= 0 && toBitcoinCash(tx.from.address, true)}}" tooltip-class="address" tooltip-enable="tx.from.identity >= 0" tooltip-append-to-body="true") {{ fromIndex() !== false ? accounts[fromIndex()].label : tx.from.label }}
span.overflow-scroll.f-14.em-300(uib-tooltip="{{tx.from.identity >= 0 && toBitcoinCash(tx.from.address, true)}}" tooltip-class="address" tooltip-enable="tx.from.identity >= 0" tooltip-append-to-body="true") {{ fromIndex() !== false ? accounts[fromIndex()].label : toBitcoinCash(tx.from.label, true) }}
.flex-1.width-20.mrl.visible-lg.visible-sm.visible-xs
asset-transaction-pending(tx-type="txType" tx-confirmations="tx.confirmations" confirmations="3" show-tooltip="false")
.flex-1.width-20.amount.flex-end
Expand All @@ -33,7 +33,7 @@
.flex-row
span.f-12.em-300 From:
|  
span.overflow-scroll.f-12.em-300(uib-tooltip="{{tx.from.identity >= 0 && toBitcoinCash(tx.from.address, true)}}" tooltip-class="address" tooltip-enable="tx.from.identity >= 0" tooltip-append-to-body="true") {{ fromIndex() !== false ? accounts[fromIndex()].label : tx.from.label }}
span.overflow-scroll.f-12.em-300(uib-tooltip="{{tx.from.identity >= 0 && toBitcoinCash(tx.from.address, true)}}" tooltip-class="address" tooltip-enable="tx.from.identity >= 0" tooltip-append-to-body="true") {{ fromIndex() !== false ? accounts[fromIndex()].label : toBitcoinCash(tx.from.label, true) }}
.flex-start.flex-between.basic-grey.status(ng-if="tx.toggled")
.destination.flex-align-self-end.width-20
transaction-status(transaction="tx")
Expand Down

0 comments on commit 93fd9fe

Please sign in to comment.