From 899022e452eb1c7430af82b9ce619ca144ac67e0 Mon Sep 17 00:00:00 2001 From: Michael Schmoock Date: Mon, 30 Nov 2020 16:43:44 +0100 Subject: [PATCH] pytest: use default fundamount on two tests --- tests/test_plugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_plugin.py b/tests/test_plugin.py index b0bc18e43..4b07abbd0 100644 --- a/tests/test_plugin.py +++ b/tests/test_plugin.py @@ -1093,8 +1093,8 @@ def test_forward_event_notification(node_factory, bitcoind, executor): {'disconnect': disconnects}]) node_factory.join_nodes([l1, l2, l3], wait_for_announce=True) - l2.openchannel(l4, 10**6, wait_for_announce=False) - l2.openchannel(l5, 10**6, wait_for_announce=True) + l2.openchannel(l4, wait_for_announce=False) + l2.openchannel(l5, wait_for_announce=True) bitcoind.generate_block(5) @@ -1996,7 +1996,7 @@ def test_htlc_accepted_hook_crash(node_factory, executor): allow_broken_log=True ) l1.connect(l2) - l1.fundchannel(l2, 10**6) + l1.fundchannel(l2) i = l2.rpc.invoice(500, "crashpls", "crashpls")['bolt11']