From 114af0ce09350765d15d809d74af3948ea30b5c2 Mon Sep 17 00:00:00 2001 From: Daniel Bluhm Date: Tue, 21 Nov 2023 00:27:55 -0500 Subject: [PATCH] fix: wallet type help text out of date Signed-off-by: Daniel Bluhm --- aries_cloudagent/config/argparse.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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'."