From 37206cc7e893355a35f3da63282ddd09777094a0 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Mon, 19 Sep 2022 00:14:45 +0300 Subject: [PATCH] db dir --- setup.py | 2 +- wallet/cashu.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 3fac2ac..6d8f98d 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ entry_points = {"console_scripts": ["cashu = wallet.cashu:cli"]} setuptools.setup( name="cashu", - version="0.1.4", + version="0.1.5", description="Ecash wallet and mint with Bitcoin Lightning support", long_description=long_description, long_description_content_type="text/markdown", diff --git a/wallet/cashu.py b/wallet/cashu.py index a5d62a1..251018a 100755 --- a/wallet/cashu.py +++ b/wallet/cashu.py @@ -45,7 +45,7 @@ def cli( ctx.ensure_object(dict) ctx.obj["HOST"] = host 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