From a9473654697690ed8cf8116457b7905aedc3c1a1 Mon Sep 17 00:00:00 2001 From: Satoshi Nakamoto <65907137+SatoshiNakamotoBitcoin@users.noreply.github.com> Date: Thu, 17 Oct 2024 20:46:40 +0200 Subject: [PATCH] Update PyBlock.py --- pybitblock/PyBlock.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pybitblock/PyBlock.py b/pybitblock/PyBlock.py index 5765c11b..02b15d16 100644 --- a/pybitblock/PyBlock.py +++ b/pybitblock/PyBlock.py @@ -774,7 +774,7 @@ def dumppk(): # output = render("Dumpprivkey", colors=['yellow'], align='left', font='tiny') print(output) responseC = input("Bitcoin Address: ") - bitcoincli = " dumpprivkey" + bitcoincli = " dumpprivkey " os.system(path['bitcoincli'] + bitcoincli + f"{responseC}") input("\a\nContinue...") except: @@ -799,7 +799,7 @@ def inffmenu(): # output = render("Address info", colors=['yellow'], align='left', font='tiny') print(output) responseC = input("Bitcoin Address: ") - bitcoincli = " getaddressinfo" + bitcoincli = " getaddressinfo " os.system(path['bitcoincli'] + bitcoincli + f"{responseC}") input("\a\nContinue...") except: