Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Fix wallet in main net (#4038)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngotchac authored and jacogr committed Jan 4, 2017
1 parent 5a3aa98 commit fbb52ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/views/Wallet/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ class Wallet extends Component {
const { address, isTest, wallet } = this.props;
const { owners, require, confirmations, transactions } = wallet;

if (!isTest || !owners || !require) {
if (!owners || !require) {
return (
<div style={ { marginTop: '4em' } }>
<Loading size={ 4 } />
Expand Down

0 comments on commit fbb52ac

Please sign in to comment.