You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Using a password file is DEPRECATED and will be removed in a future version. Instead, you'll be prompted to enter the password when using keystore wallets."
12
+
)
7
13
withopen(args.passfile) aspass_file:
8
14
returnpass_file.read().strip()
9
15
returngetpass("Keyfile's password: ")
10
16
11
17
12
18
defload_guardian_password(args: Any) ->str:
13
19
ifargs.guardian_passfile:
20
+
logger.warning(
21
+
"Using a password file is DEPRECATED and will be removed in a future version. Instead, you'll be prompted to enter the password when using keystore wallets."
22
+
)
14
23
withopen(args.guardian_passfile) aspass_file:
15
24
returnpass_file.read().strip()
16
25
returngetpass("Keyfile's password: ")
17
26
18
27
19
28
defload_relayer_password(args: Any) ->str:
20
29
ifargs.relayer_passfile:
30
+
logger.warning(
31
+
"Using a password file is DEPRECATED and will be removed in a future version. Instead, you'll be prompted to enter the password when using keystore wallets."
0 commit comments