diff --git a/cashu/wallet/cli.py b/cashu/wallet/cli.py index 4b6901e..65bf4f3 100644 --- a/cashu/wallet/cli.py +++ b/cashu/wallet/cli.py @@ -51,10 +51,10 @@ from cashu.wallet.wallet import Wallet as Wallet from .cli_helpers import ( get_mint_wallet, print_mint_balances, - redeem_multimint, - verify_mints, - token_from_lnbits_link, proofs_to_token, + redeem_multimint, + token_from_lnbits_link, + verify_mints, ) diff --git a/cashu/wallet/cli_helpers.py b/cashu/wallet/cli_helpers.py index 6cf8930..132b6fe 100644 --- a/cashu/wallet/cli_helpers.py +++ b/cashu/wallet/cli_helpers.py @@ -1,15 +1,12 @@ import os +import urllib.parse import click -from cashu.core.base import Proof, WalletKeyset, TokenJson, TokenMintJson -from cashu.core.settings import CASHU_DIR +from cashu.core.base import Proof, TokenJson, TokenMintJson, WalletKeyset +from cashu.core.settings import CASHU_DIR, MINT_URL from cashu.wallet.crud import get_keyset from cashu.wallet.wallet import Wallet as Wallet -import urllib.parse -from cashu.core.settings import ( - MINT_URL, -) async def verify_mints(ctx, dtoken):