From 167eaf89f2754bcfc99a947014fdfb1a66ae867b Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Fri, 14 Oct 2022 01:02:19 +0200 Subject: [PATCH] remove comment --- cashu/mint/ledger.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/cashu/mint/ledger.py b/cashu/mint/ledger.py index c9c62cc..1d26716 100644 --- a/cashu/mint/ledger.py +++ b/cashu/mint/ledger.py @@ -310,9 +310,6 @@ class Ledger: if amount not in [2**i for i in range(MAX_ORDER)]: raise Exception(f"Can only mint amounts up to {2**MAX_ORDER}.") - # promises = [ - # await self._generate_promise(amount, B_) for B_, amount in zip(B_s, amounts) - # ] promises = await self._generate_promises(B_s, keyset) return promises