diff --git a/cashu/wallet/cli.py b/cashu/wallet/cli.py index a500921..3b7138e 100644 --- a/cashu/wallet/cli.py +++ b/cashu/wallet/cli.py @@ -504,11 +504,10 @@ async def burn(ctx, token: str, all: bool, force: bool): @coro async def pending(ctx): wallet: Wallet = ctx.obj["WALLET"] - await wallet.load_mint() reserved_proofs = await get_reserved_proofs(wallet.db) if len(reserved_proofs): print(f"--------------------------\n") - sorted_proofs = sorted(reserved_proofs, key=itemgetter("send_id")) + sorted_proofs = sorted(reserved_proofs, key=itemgetter("send_id")) # type: ignore for i, (key, value) in enumerate( groupby(sorted_proofs, key=itemgetter("send_id")) ):