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

Commit

Permalink
fix(Eth): dont check for access to eth, figure out how to disable thi…
Browse files Browse the repository at this point in the history
…s on testnet later
  • Loading branch information
plondon committed Nov 29, 2017
1 parent ec510de commit 39756e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/services/wallet.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ function Wallet ($http, $window, $timeout, $location, $injector, Alerts, MyWalle
history.push(wallet.my.wallet.getHistory());

let Ethereum = $injector.get('Ethereum');
if (Ethereum.eth && Ethereum.userHasAccess) history.push(Ethereum.fetchHistory());
if (Ethereum.eth) history.push(Ethereum.fetchHistory());

let ShapeShift = $injector.get('ShapeShift');
if (ShapeShift.shapeshift) ShapeShift.checkForCompletedTrades();
Expand Down

0 comments on commit 39756e3

Please sign in to comment.