1
0

Merge pull request #7282 from wakiyamap/add_signet

add signet support
This commit is contained in:
ghost43
2021-06-22 16:15:38 +02:00
committed by GitHub
9 changed files with 77 additions and 5 deletions

View File

@@ -1415,6 +1415,7 @@ def add_global_options(parser):
group.add_argument("--testnet", action="store_true", dest="testnet", default=False, help="Use Testnet")
group.add_argument("--regtest", action="store_true", dest="regtest", default=False, help="Use Regtest")
group.add_argument("--simnet", action="store_true", dest="simnet", default=False, help="Use Simnet")
group.add_argument("--signet", action="store_true", dest="signet", default=False, help="Use Signet")
group.add_argument("-o", "--offline", action="store_true", dest="offline", default=False, help="Run offline")
def add_wallet_option(parser):