Skip to content

Commit c3a3426

Browse files
committed
Use more specific failures in validate_onchain_tx w/o dual-funding
1 parent 387315c commit c3a3426

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tests/test_connection.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1216,6 +1216,7 @@ def test_v2_open(node_factory, bitcoind, chainparams):
12161216
assert(result['status'] == 'complete')
12171217

12181218

1219+
@unittest.skipIf(os.getenv('SUBDAEMON').startswith('hsmd:remote_hsmd') and os.getenv('VLS_PERMISSIVE') != '1', "channel push not allowed: dual-funding not supported yet")
12191220
@pytest.mark.openchannel('v1')
12201221
def test_funding_push(node_factory, bitcoind, chainparams):
12211222
""" Try to push peer some sats """

tests/test_wallet.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1491,6 +1491,7 @@ def test_withdraw_nlocktime_fuzz(node_factory, bitcoind):
14911491
raise Exception("No transaction with fuzzed nLockTime !")
14921492

14931493

1494+
@unittest.skipIf(os.getenv('SUBDAEMON').startswith('hsmd:remote_hsmd') and os.getenv('VLS_PERMISSIVE') != '1', "addr2 and addr3 unknown to l1")
14941495
def test_multiwithdraw_simple(node_factory, bitcoind, chainparams):
14951496
"""
14961497
Test simple multiwithdraw usage.

0 commit comments

Comments
 (0)