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

fix: wallet type help text out of date #2618

Merged
merged 2 commits into from
Nov 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions aries_cloudagent/config/argparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -1574,9 +1574,9 @@ def add_arguments(self, parser: ArgumentParser):
default="basic",
env_var="ACAPY_WALLET_TYPE",
help=(
"Specifies the type of Indy wallet provider to use. "
"Supported internal storage types are 'basic' (memory) and 'indy'. "
"The default (if not specified) is 'basic'."
"Specifies the type of wallet provider to use. "
"Supported internal storage types are 'basic' (memory) and 'askar'. "
"The default (if not specified) is 'basic'. 'indy' is deprecated."
),
)
parser.add_argument(
Expand All @@ -1586,7 +1586,7 @@ def add_arguments(self, parser: ArgumentParser):
default="default",
env_var="ACAPY_WALLET_STORAGE_TYPE",
help=(
"Specifies the type of Indy wallet backend to use. "
"Specifies the type of wallet backend to use. "
"Supported internal storage types are 'basic' (memory), "
"'default' (sqlite), and 'postgres_storage'. The default, "
"if not specified, is 'default'."
Expand Down