From 663559d59fe00b8fb7df6a53ccec64a4c303ea9a Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Sun, 16 Oct 2022 13:52:09 +0200 Subject: [PATCH] rename cli mint to invoice --- cashu/wallet/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cashu/wallet/cli.py b/cashu/wallet/cli.py index d4bdfc1..9e906dc 100755 --- a/cashu/wallet/cli.py +++ b/cashu/wallet/cli.py @@ -78,7 +78,7 @@ def coro(f): @click.option("--hash", default="", help="Hash of the paid invoice.", type=str) @click.pass_context @coro -async def mint(ctx, amount: int, hash: str): +async def invoice(ctx, amount: int, hash: str): wallet: Wallet = ctx.obj["WALLET"] await wallet.load_mint() wallet.status()