Shorthand CLI flags for alice verifying key.

pull/2459/head
Kieran Prasch 2020-12-05 09:51:22 -08:00
parent ec75abd83f
commit 8649652915
1 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,7 @@ class JoinPolicy(BaseSchema): #TODO: this doesn't have a cli implementation
load_only=True, required=True,
click=click.option(
'--alice-verifying-key',
'-avk',
help="Alice's verifying key as a hexadecimal string",
required=True, type=click.STRING,))
@ -51,6 +52,7 @@ class Retrieve(BaseSchema):
required=True, load_only=True,
click=click.option(
'--alice-verifying-key',
'-avk',
help="Alice's verifying key as a hexadecimal string",
type=click.STRING,
required=True))