Browse Source

fix(network): ensure accurate btc balance

renovate/lint-staged-8.x
Jack Mallers 7 years ago
parent
commit
9d53826915
  1. 9
      app/components/Contacts/Network.js

9
app/components/Contacts/Network.js

@ -158,9 +158,12 @@ class Network extends Component {
<section>
<h2>My Network</h2>
<span className={styles.channelAmount}>
{btc.satoshisToBtc(balance.channelBalance)} {currencyName} ${usdAmount
? usdAmount.toLocaleString()
: ''}
<Value
value={balance.channelBalance}
currency={ticker.currency}
currentTicker={currentTicker}
/>
{`$${usdAmount ? usdAmount.toLocaleString() : ''}`}
</span>
</section>
<section

Loading…
Cancel
Save