Skip to content

Commit

Permalink
update wallet fee information
Browse files Browse the repository at this point in the history
  • Loading branch information
callebtc committed Jun 1, 2024
1 parent 866e2ab commit 237b212
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_mint_fees.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ async def test_split_not_enough_fees(wallet1: Wallet, ledger: Ledger):


@pytest.mark.asyncio
@pytest.mark.skipif_with_fees(is_regtest, reason="only works with FakeWallet")
@pytest.mark.skipif(is_regtest, reason="only works with FakeWallet")
async def test_melt_internal(wallet1: Wallet, ledger: Ledger):
# set fees to 100 ppk
set_ledger_keyset_fees(100, ledger, wallet1)
Expand Down Expand Up @@ -213,7 +213,7 @@ async def test_melt_internal(wallet1: Wallet, ledger: Ledger):
@pytest.mark.skipif(is_fake, reason="only works with Regtest")
async def test_melt_external_with_fees(wallet1: Wallet, ledger: Ledger):
# set fees to 100 ppk
set_ledger_keyset_fees(100, ledger)
set_ledger_keyset_fees(100, ledger, wallet1)

# mint twice so we have enough to pay the second invoice back
invoice = await wallet1.request_mint(128)
Expand Down

0 comments on commit 237b212

Please sign in to comment.