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 22, 2024
1 parent fed168d commit c6e95ea
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pybitblock/PyBlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -1927,6 +1927,7 @@ def bitcoincoremenuLOCAL():
\u001b[38;5;202mY.\033[0;37;40m Mempool Monitor
\u001b[38;5;202mCM.\033[0;37;40m Core Miner
\u001b[38;5;202mONM.\033[0;37;40m Own Node Miner
\u001b[38;5;202mVG.\033[0;37;40m Vanity Generator
\u001b[33;1mEnter.\033[0;37;40m Return
\n\n\x1b[?25h""".format(n, alias['alias'], d['blocks'], version ))
bitcoincoremenuLOCALcontrolA(input("\033[1;32;40mSelect option: \033[0;37;40m"))
Expand Down Expand Up @@ -1974,6 +1975,7 @@ def bitcoincoremenuLOCALOnchainONLY():
\u001b[38;5;202mY.\033[0;37;40m Mempool Monitor
\u001b[38;5;202mCM.\033[0;37;40m Core Miner
\u001b[38;5;202mONM.\033[0;37;40m Own Node Miner
\u001b[38;5;202mVG.\033[0;37;40m Vanity Generator
\u001b[33;1mEnter.\033[0;37;40m Return
\n\n\x1b[?25h""".format(n,d['blocks'], version ))
bitcoincoremenuLOCALcontrolAOnchainONLY(input("\033[1;32;40mSelect option: \033[0;37;40m"))
Expand Down Expand Up @@ -6984,6 +6986,13 @@ def bitcoincoremenuLOCALcontrolA(bcore):
CoreMiner()
elif bcore in ["ONM", "onm"]:
OwnNodeMinerONCHAIN()
elif bcore in ["VG", "vg"]:
clear()
blogo()
output = render("Vanity Generator", colors=['yellow'], align='left', font='tiny')
print(output)
os.system(f"cd SPV && python3 PyVanityGen.py")
input("\a\nContinue...")

def bitcoincoremenuLOCALcontrolAOnchainONLY(bcore):
if bcore in ["A", "a"]:
Expand Down Expand Up @@ -7085,6 +7094,13 @@ def bitcoincoremenuLOCALcontrolAOnchainONLY(bcore):
CoreMiner()
elif bcore in ["ONM", "onm"]:
OwnNodeMinerONCHAIN()
elif bcore in ["VG", "vg"]:
clear()
blogo()
output = render("Vanity Generator", colors=['yellow'], align='left', font='tiny')
print(output)
os.system(f"cd SPV && python3 PyVanityGen.py")
input("\a\nContinue...")

def walletmenuLOCALcontrolAOnchainONLY(walletmnu):
if walletmnu in ["A", "a"]:
Expand Down Expand Up @@ -7734,6 +7750,13 @@ def bitcoincoremenuREMOTEcontrol(bcore):
untxsConn()
elif bcore in ["ONM", "onm"]:
OwnNodeMinerONCHAIN()
elif bcore in ["VG", "vg"]:
clear()
blogo()
output = render("Vanity Generator", colors=['yellow'], align='left', font='tiny')
print(output)
os.system(f"cd SPV && python3 PyVanityGen.py")
input("\a\nContinue...")

def bitcoincoremenuREMOTEcontrolO(oreturn):
if oreturn in ["A", "a"]:
Expand Down

0 comments on commit c6e95ea

Please sign in to comment.