From 45bd624555879d9c5d79a05cc9c59a0f277f530d Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Sun, 30 Oct 2022 00:28:54 +0200 Subject: [PATCH] bump version --- cashu/wallet/cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cashu/wallet/cli.py b/cashu/wallet/cli.py index f6beff8..bfbffae 100755 --- a/cashu/wallet/cli.py +++ b/cashu/wallet/cli.py @@ -414,7 +414,8 @@ async def info(ctx): print(f"Cashu dir: {CASHU_DIR}") if ENV_FILE: print(f"Settings: {ENV_FILE}") - print(f"Tor enabled: {TOR}") + if TOR: + print(f"Tor enabled: {TOR}") if SOCKS_HOST: print(f"Socks proxy: {SOCKS_HOST}:{SOCKS_PORT}") print(f"Mint URL: {MINT_URL}")