Skip to content

Commit

Permalink
fix default flag for regtest
Browse files Browse the repository at this point in the history
  • Loading branch information
callebtc committed Jul 11, 2024
1 parent ca8477c commit 082c50f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_mint_fees.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,9 @@ async def test_melt_external_with_fees(wallet1: Wallet, ledger: Ledger):

mint_quote = await wallet1.melt_quote(invoice_payment_request)
total_amount = mint_quote.amount + mint_quote.fee_reserve
send_proofs, fee = await wallet1.select_to_send(wallet1.proofs, total_amount)
send_proofs, fee = await wallet1.select_to_send(
wallet1.proofs, total_amount, include_fees=True
)
melt_quote = await ledger.melt_quote(
PostMeltQuoteRequest(request=invoice_payment_request, unit="sat")
)
Expand Down

0 comments on commit 082c50f

Please sign in to comment.