From fb0027e314535cffe8fc2de8d464267f03aa41ec Mon Sep 17 00:00:00 2001 From: Michael Schmoock Date: Mon, 13 Feb 2023 18:14:31 +0100 Subject: [PATCH] pyln-testing: fundbalancedchannel default total_capacity to FUNDAMOUNT --- contrib/pyln-testing/pyln/testing/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/pyln-testing/pyln/testing/utils.py b/contrib/pyln-testing/pyln/testing/utils.py index a9bb2d3be..722aeb49b 100644 --- a/contrib/pyln-testing/pyln/testing/utils.py +++ b/contrib/pyln-testing/pyln/testing/utils.py @@ -868,7 +868,7 @@ class LightningNode(object): self.daemon.wait_for_log('Owning output .* txid {} CONFIRMED'.format(txid)) return addr, txid - def fundbalancedchannel(self, remote_node, total_capacity, announce=True): + def fundbalancedchannel(self, remote_node, total_capacity=FUNDAMOUNT, announce=True): ''' Creates a perfectly-balanced channel, as all things should be. '''