~/.cashu/

This commit is contained in:
callebtc
2022-09-19 00:18:05 +03:00
parent 37206cc7e8
commit 088a0bc29f
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ entry_points = {"console_scripts": ["cashu = wallet.cashu:cli"]}
setuptools.setup( setuptools.setup(
name="cashu", name="cashu",
version="0.1.5", version="0.1.6",
description="Ecash wallet and mint with Bitcoin Lightning support", description="Ecash wallet and mint with Bitcoin Lightning support",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",

View File

@@ -45,7 +45,7 @@ def cli(
ctx.ensure_object(dict) ctx.ensure_object(dict)
ctx.obj["HOST"] = host ctx.obj["HOST"] = host
ctx.obj["WALLET_NAME"] = walletname ctx.obj["WALLET_NAME"] = walletname
ctx.obj["WALLET"] = Wallet(ctx.obj["HOST"], f".cashu/{walletname}", walletname) ctx.obj["WALLET"] = Wallet(ctx.obj["HOST"], f"~/.cashu/{walletname}", walletname)
pass pass