Browse Source

Fix unwanted display of privkeys in GUI

Bug introduced with cbf69c6a60 when
gap_limit parameter was removed from wallet_display()
master
Kristaps Kaupe 6 years ago
parent
commit
6efbf338c0
No known key found for this signature in database
GPG Key ID: D47B1B4232B55437
  1. 3
      scripts/joinmarket-qt.py

3
scripts/joinmarket-qt.py

@ -1776,8 +1776,7 @@ def get_wallet_printout(wallet_service):
xpubs: [[xpubext, xpubint], ...]
Bitcoin amounts returned are in btc, not satoshis
"""
walletview = wallet_display(wallet_service, jm_single().config.getint("GUI",
"gaplimit"), False, serialized=False)
walletview = wallet_display(wallet_service, False, serialized=False)
rows = []
mbalances = []
xpubs = []

Loading…
Cancel
Save