From da98a9d0aff2a33d4535bbb8ca251ddb1ea940b5 Mon Sep 17 00:00:00 2001 From: niftynei Date: Thu, 22 Oct 2020 14:46:49 -0500 Subject: [PATCH] df-accepter plugin: temporarily dont pass in signpsbt --- tests/plugins/df_accepter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/plugins/df_accepter.py b/tests/plugins/df_accepter.py index 4af9042f6..3e22d5ee7 100755 --- a/tests/plugins/df_accepter.py +++ b/tests/plugins/df_accepter.py @@ -110,9 +110,9 @@ def on_tx_sign(openchannel2_sign, plugin, **kwargs): # We only sign the ones with our parity of a serial_id # FIXME: find the inputs with an odd-serial, these are ours # the key for a serial_id :: - our_inputs = [1] + # our_inputs = [1] - signed_psbt = plugin.rpc.signpsbt(psbt, signonly=our_inputs)['signed_psbt'] + signed_psbt = plugin.rpc.signpsbt(psbt)['signed_psbt'] return {'result': 'continue', 'psbt': signed_psbt}