chore: logs
This commit is contained in:
@@ -10,6 +10,7 @@ from lnbits.wallets import get_funding_source
|
|||||||
|
|
||||||
funding_source = get_funding_source()
|
funding_source = get_funding_source()
|
||||||
is_boltz_wallet = funding_source.__class__.__name__ == "BoltzWallet"
|
is_boltz_wallet = funding_source.__class__.__name__ == "BoltzWallet"
|
||||||
|
print("### is_boltz_wallet", is_boltz_wallet, funding_source.__class__.__name__)
|
||||||
|
|
||||||
docker_lightning_cli = [
|
docker_lightning_cli = [
|
||||||
"docker",
|
"docker",
|
||||||
|
|||||||
@@ -22,7 +22,11 @@ async def test_create_invoice(from_wallet):
|
|||||||
|
|
||||||
# we cannot know the preimage of the swap yet
|
# we cannot know the preimage of the swap yet
|
||||||
funding_source = get_funding_source()
|
funding_source = get_funding_source()
|
||||||
print("### funding_source.__class__.__name__", funding_source.__class__.__name__)
|
print(
|
||||||
|
"### funding_source.__class__.__name__",
|
||||||
|
is_boltz_wallet,
|
||||||
|
funding_source.__class__.__name__,
|
||||||
|
)
|
||||||
if not is_boltz_wallet:
|
if not is_boltz_wallet:
|
||||||
assert payment.preimage
|
assert payment.preimage
|
||||||
|
|
||||||
@@ -45,7 +49,11 @@ async def test_create_internal_invoice(from_wallet):
|
|||||||
|
|
||||||
# we cannot know the preimage of the swap yet
|
# we cannot know the preimage of the swap yet
|
||||||
funding_source = get_funding_source()
|
funding_source = get_funding_source()
|
||||||
print("### funding_source.__class__.__name__", funding_source.__class__.__name__)
|
print(
|
||||||
|
"### funding_source.__class__.__name__",
|
||||||
|
is_boltz_wallet,
|
||||||
|
funding_source.__class__.__name__,
|
||||||
|
)
|
||||||
if not is_boltz_wallet:
|
if not is_boltz_wallet:
|
||||||
assert payment.preimage
|
assert payment.preimage
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user