Merge pull request #2458 from lbryio/wallet_server_default_coin

default wallet server to LBC coin
This commit is contained in:
Alex Grin 2019-09-16 12:34:54 -04:00 committed by GitHub
commit daac3eed09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,8 @@ def get_argument_parser():
parser = argparse.ArgumentParser(
prog="torba-server"
)
parser.add_argument("spvserver", type=str, help="Python class path to SPV server implementation.")
parser.add_argument("spvserver", type=str, help="Python class path to SPV server implementation.",
nargs="?", default="lbry.wallet.server.coin.LBC")
return parser