Merge pull request #355 from curly60e/curly60e-patch-192

Unconfirmed txs
This commit is contained in:
curly60e 2021-11-25 17:55:31 -03:00 committed by GitHub
commit b1f7d70905
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()