From 9919c141ad17aec371585c3c7665cf16f252e1f4 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Sun, 15 Jan 2023 01:23:15 +0100 Subject: [PATCH] update pyproject for lnbits --- cashu/wallet/wallet.py | 3 --- pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/cashu/wallet/wallet.py b/cashu/wallet/wallet.py index 985a269..0c72808 100644 --- a/cashu/wallet/wallet.py +++ b/cashu/wallet/wallet.py @@ -265,9 +265,6 @@ class LedgerAPI: try: # backwards compatibility: parse promises < 0.8 with no "promises" field promises = PostMintResponseLegacy.parse_obj(reponse_dict).__root__ - logger.warning( - "Parsing token with no promises field. Please upgrade mint to 0.8" - ) except: promises = PostMintResponse.parse_obj(reponse_dict).promises diff --git a/pyproject.toml b/pyproject.toml index b33cc7b..66f4b9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ sqlalchemy-aio = "^0.17.0" python-bitcoinlib = "^0.11.2" h11 = "0.12.0" PySocks = "^1.7.1" -cryptography = "^38.0.4" +cryptography = "^36.0.1" websocket-client = "1.3.3" pycryptodomex = "^3.16.0" setuptools = "^65.6.3"