Skip to content

Commit

Permalink
Update PyBlock.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SatoshiNakamotoBitcoin authored Oct 17, 2024
1 parent 824612f commit a947365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pybitblock/PyBlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit a947365

Please sign in to comment.