default wallet server to LBC coin

This commit is contained in:
Alex Grintsvayg 2019-09-13 10:39:05 -04:00
parent a7b205603c
commit 2026848a77
No known key found for this signature in database
GPG key ID: AEB3F089F86A22B5

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