Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix ACAPY_PROMOTE-AUTHOR-DID flag #1978

2 changes: 1 addition & 1 deletion Endorser.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Endorsement:
For Authors, specify whether to automatically create transactions for a cred def's revocation registry. (If not specified, the controller must invoke the endpoints required to create
the revocation registry and assign to the cred def.) [env var: ACAPY_CREATE_REVOCATION_TRANSACTIONS]
--auto-promote-author-did
For Authors, specify whether to automatically promote a DID to the wallet public DID after writing to the ledger.
For Authors, specify whether to automatically promote a DID to the wallet public DID after writing to the ledger. [env var: ACAPY_AUTO_PROMOTE_AUTHOR_DID]
```

## How Aca-py Handles Endorsements
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudagent/config/argparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -1837,7 +1837,7 @@ def add_arguments(self, parser: ArgumentParser):
parser.add_argument(
"--auto-promote-author-did",
action="store_true",
env_var="ACAPY_PROMOTE-AUTHOR-DID",
env_var="ACAPY_AUTO_PROMOTE_AUTHOR_DID",
help="For Authors, specify whether to automatically promote"
" a DID to the wallet public DID after writing to the ledger.",
)
Expand Down