From 9ecf02119d4e816044b72d1e3b7135dfd4e5b794 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Tue, 8 Oct 2024 09:46:43 +0200 Subject: [PATCH] wrong string --- tests/test_wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_wallet.py b/tests/test_wallet.py index 585992d8..189528f4 100644 --- a/tests/test_wallet.py +++ b/tests/test_wallet.py @@ -168,7 +168,7 @@ async def test_request_mint(wallet1: Wallet): async def test_mint(wallet1: Wallet): invoice = await wallet1.request_mint(64) await pay_if_regtest(invoice.bolt11) - quote_resp = await wallet1.get_mint_quote(invoice.bolt11) + quote_resp = await wallet1.get_mint_quote(invoice.id) assert quote_resp.request == invoice.bolt11 assert quote_resp.state == MintQuoteState.pending.value