@@ -446,7 +446,6 @@ def get_mempool_when_size_1():
446
446
assert opts ['expected_close_fee' ] == fee_mempool
447
447
448
448
449
- @unittest .skipIf (EXPERIMENTAL_FEATURES , "anchors uses quick-close, not negotiation" )
450
449
def test_closing_negotiation_step_30pct (node_factory , bitcoind , chainparams ):
451
450
"""Test that the closing fee negotiation step works, 30%"""
452
451
opts = {}
@@ -461,22 +460,6 @@ def test_closing_negotiation_step_30pct(node_factory, bitcoind, chainparams):
461
460
closing_negotiation_step (node_factory , bitcoind , chainparams , opts )
462
461
463
462
464
- @unittest .skipIf (EXPERIMENTAL_FEATURES , "anchors uses quick-close, not negotiation" )
465
- def test_closing_negotiation_step_50pct (node_factory , bitcoind , chainparams ):
466
- """Test that the closing fee negotiation step works, 50%, the default"""
467
- opts = {}
468
- opts ['fee_negotiation_step' ] = '50%'
469
-
470
- opts ['close_initiated_by' ] = 'opener'
471
- opts ['expected_close_fee' ] = 20334 if not chainparams ['elements' ] else 25789
472
- closing_negotiation_step (node_factory , bitcoind , chainparams , opts )
473
-
474
- opts ['close_initiated_by' ] = 'peer'
475
- opts ['expected_close_fee' ] = 20334 if not chainparams ['elements' ] else 25789
476
- closing_negotiation_step (node_factory , bitcoind , chainparams , opts )
477
-
478
-
479
- @unittest .skipIf (EXPERIMENTAL_FEATURES , "anchors uses quick-close, not negotiation" )
480
463
def test_closing_negotiation_step_100pct (node_factory , bitcoind , chainparams ):
481
464
"""Test that the closing fee negotiation step works, 100%"""
482
465
opts = {}
@@ -496,7 +479,6 @@ def test_closing_negotiation_step_100pct(node_factory, bitcoind, chainparams):
496
479
closing_negotiation_step (node_factory , bitcoind , chainparams , opts )
497
480
498
481
499
- @unittest .skipIf (EXPERIMENTAL_FEATURES , "anchors uses quick-close, not negotiation" )
500
482
def test_closing_negotiation_step_1sat (node_factory , bitcoind , chainparams ):
501
483
"""Test that the closing fee negotiation step works, 1sat"""
502
484
opts = {}
@@ -511,7 +493,6 @@ def test_closing_negotiation_step_1sat(node_factory, bitcoind, chainparams):
511
493
closing_negotiation_step (node_factory , bitcoind , chainparams , opts )
512
494
513
495
514
- @unittest .skipIf (EXPERIMENTAL_FEATURES , "anchors uses quick-close, not negotiation" )
515
496
def test_closing_negotiation_step_700sat (node_factory , bitcoind , chainparams ):
516
497
"""Test that the closing fee negotiation step works, 700sat"""
517
498
opts = {}
@@ -3331,7 +3312,7 @@ def test_anysegwit_close_needs_feature(node_factory, bitcoind):
3331
3312
3332
3313
def test_close_feerate_range (node_factory , bitcoind , chainparams ):
3333
3314
"""Test the quick-close fee range negotiation"""
3334
- l1 , l2 = node_factory .line_graph (2 , opts = { 'experimental-quick-close' : None } )
3315
+ l1 , l2 = node_factory .line_graph (2 )
3335
3316
3336
3317
# Lowball the range here.
3337
3318
l1 .rpc .close (l2 .info ['id' ], feerange = ['253perkw' , 'normal' ])
0 commit comments