fix(USD price): Switching to tor-friendly USD price lookup

This commit is contained in:
Chris Troutner
2020-10-20 10:31:42 -07:00
parent 5885ae8c68
commit 914955a9fa
+1 -1
View File
@@ -129,7 +129,7 @@ class AdminLTEPage extends React.Component {
const myBalance = await bchWalletLib.getBalance()
const bchjs = bchWalletLib.bchjs
const currentRate = await bchjs.Price.current('usd')
const currentRate = await bchjs.Price.getUsd() * 100
_this.setState({
currentRate: currentRate
})