From 58297bcfbf7ec851d6471ed67f259155af762e08 Mon Sep 17 00:00:00 2001 From: Altbierjupp Date: Fri, 21 Oct 2022 17:14:41 +0200 Subject: [PATCH] Update cli.py --- 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 d033b8e..a94f201 100755 --- a/cashu/wallet/cli.py +++ b/cashu/wallet/cli.py @@ -220,7 +220,7 @@ async def receive(ctx, coin: str, lock: str): wallet.status() -@cli.command("burn", help="Burn spent coins. After spednding some coins you need to burn them to prevent the wallet to do a double spent." +@cli.command("burn", help="Burn spent coins. After spending some coins you need to burn them to prevent the wallet to do a double spent." "This will be blocked by the mint, cause it holds the info about all spent coins .") @click.argument("coin", required=False, type=str) @click.option("--all", "-a", default=False, is_flag=True, help="Burn all spent coins.")