diff --git a/PyBlock.py b/PyBlock.py index b627479..3debc88 100644 --- a/PyBlock.py +++ b/PyBlock.py @@ -716,6 +716,7 @@ def bitcoincoremenuLOCAL(): \u001b[38;5;202mJ.\033[0;37;40m Whitepaper \u001b[38;5;202mO.\033[0;37;40m OP_RETURN \u001b[38;5;202mZ.\033[0;37;40m Stats + \u001b[38;5;202mU.\033[0;37;40m Unconfirmed Txs \u001b[33;1mR.\033[0;37;40m Return \n\n\x1b[?25h""".format(n, alias['alias'], d['blocks'], version, checkupdate())) bitcoincoremenuLOCALcontrolA(input("\033[1;32;40mSelect option: \033[0;37;40m")) @@ -748,6 +749,7 @@ def bitcoincoremenuLOCALOnchainONLY(): \u001b[38;5;202mO.\033[0;37;40m OP_RETURN \u001b[38;5;202mW.\033[0;37;40m Wallet \u001b[38;5;202mZ.\033[0;37;40m Stats + \u001b[38;5;202mU.\033[0;37;40m Unconfirmed Txs \u001b[33;1mR.\033[0;37;40m Return \n\n\x1b[?25h""".format(n,d['blocks'], version, checkupdate())) bitcoincoremenuLOCALcontrolAOnchainONLY(input("\033[1;32;40mSelect option: \033[0;37;40m")) @@ -4506,6 +4508,8 @@ def bitcoincoremenuLOCALcontrolA(bcore): bitcoincoremenuLOCALOPRETURN() elif bcore in ["Z", "z"]: statsconn() + elif bcore in ["U", "u"]: + untxsconn() def bitcoincoremenuLOCALcontrolAOnchainONLY(bcore): if bcore in ["A", "a"]: @@ -4555,7 +4559,9 @@ def bitcoincoremenuLOCALcontrolAOnchainONLY(bcore): walletmenuLOCALOnchainONLY() elif bcore in ["Z", "z"]: statsconn() - + elif bcore in ["U", "u"]: + untxsconn() + def walletmenuLOCALcontrolAOnchainONLY(walletmnu): if walletmnu in ["A", "a"]: getnewaddressOnchain()