mirror of
https://github.com/curly60e/pyblock.git
synced 2026-08-20 13:28:10 +02:00
Merge pull request #355 from curly60e/curly60e-patch-192
Unconfirmed txs
This commit is contained in:
commit
b1f7d70905
1 changed files with 7 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue