diff --git a/aries_cloudagent/config/argparse.py b/aries_cloudagent/config/argparse.py index 2f9463d73b..b0e17bc4f0 100644 --- a/aries_cloudagent/config/argparse.py +++ b/aries_cloudagent/config/argparse.py @@ -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( @@ -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'."