Skip to content

Commit

Permalink
electrum plugin: Really fix hot wallet test (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
shesek committed Aug 16, 2020
1 parent a572c44 commit 5923536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/electrum-plugin/bwt.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def set_server(self):
def load_wallet(self, wallet, main_window):
if not wallet.get_master_public_keys():
_logger.warning('skipping unsupported wallet type %s' % wallet.wallet_type)
elif not wallet.can_export():
elif wallet.can_export():
_logger.warning('skipping hot wallet')
else:
num_wallets = len(self.wallets)
Expand Down

0 comments on commit 5923536

Please sign in to comment.