From 6efbf338c046d655a63d60841bce57f42bd5dc07 Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Sat, 4 Jan 2020 01:13:29 +0200 Subject: [PATCH] Fix unwanted display of privkeys in GUI Bug introduced with cbf69c6a601edee2e69d31c92733ec1f3bb31e86 when gap_limit parameter was removed from wallet_display() --- scripts/joinmarket-qt.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/joinmarket-qt.py b/scripts/joinmarket-qt.py index 395e4bb..ca2f4f9 100644 --- a/scripts/joinmarket-qt.py +++ b/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 = []